i-TED imaging tests¶

In [1]:
pkg_ver = lambda pkg: "{:<20}{:}".format(pkg.__name__,pkg.__version__)

# ROOT
import uproot
print(pkg_ver(uproot))
import ROOT

# Machine Learning
import sklearn
print(pkg_ver(sklearn))
import torch
print(pkg_ver(torch))

# Data science
import scipy
print(pkg_ver(scipy))
import numpy
print(pkg_ver(numpy))
import pandas
print(pkg_ver(pandas))

# Visualizations
import matplotlib
print(pkg_ver(matplotlib))
import matplotlib.pyplot as plt

import tqdm
print(pkg_ver(tqdm))

import intake
print(pkg_ver(intake))
intake.output_notebook()  # enables source.plot API

import compton
print(pkg_ver(compton))

import sympy
import hashlib

from IPython.display import display, clear_output
clear_output(wait=True)
uproot              4.3.5
Welcome to JupyROOT 6.28/04
sklearn             1.2.2
torch               2.0.1
scipy               1.10.1
numpy               1.24.3
pandas              1.5.3
matplotlib          3.7.1
tqdm                4.65.0
intake              0.7.0
compton             2023.06.21-4
In [2]:
%jsroot
In [3]:
import warnings
warnings.simplefilter(action='ignore', category=Warning)
In [ ]:
 
In [ ]:
 
In [ ]:
 
In [ ]:
 
In [ ]:
 
In [4]:
catalog = intake.open_catalog('imaging.yml')
In [5]:
list(catalog)
Out[5]:
['X_5_1_100', 'X_5_2_100', 'X_5_1_200', 'X_5_1_250', 'test']
In [6]:
t = compton.ImagingData(catalog['test'], 0)
df = t.df()
df.describe()
Out[6]:
DetectorNumber E_s X_s Y_s Z_s E_a X_a Y_a Z_a dt ts E_t norm X_n Y_n Z_n costheta lambd arm
count 20016.000000 20016.000000 20016.000000 20016.000000 20016.000000 20016.000000 20016.000000 20016.000000 20016.000000 20016.000000 2.001600e+04 20016.000000 20016.000000 20016.000000 20016.000000 20016.000000 20016.000000 20016.000000 19286.000000
mean 2.382244 1.942258 -2.016849 -1.310550 -36.899658 2.482088 1.406966 0.958180 31.113926 -0.667499 8.142989e+14 4.424346 80.714635 -0.044562 -0.036425 -0.844703 0.588877 866.517048 150.240423
std 1.080022 1.573388 13.843409 14.796663 18.003145 1.575428 28.022467 27.726946 67.389521 3.823854 5.341561e+14 0.090230 69.443056 0.363062 0.362197 0.142050 0.629249 963.954769 13.807726
min 1.000000 0.138491 -39.485100 -41.589500 -282.237000 0.188193 -66.085000 -69.331800 -9145.340000 -9.986000 6.127210e+11 4.299998 16.910781 -0.929332 -0.955135 -0.999995 -1.598023 0.047546 2.309097
25% 1.000000 0.269776 -14.313225 -14.961650 -50.676500 0.753227 -20.274425 -20.503650 22.964250 -3.669250 3.473382e+14 4.352760 61.614830 -0.317894 -0.307611 -0.950222 0.436715 227.411401 141.751532
50% 2.000000 1.770730 -1.462525 -1.528505 -42.076500 2.627155 3.963045 4.147310 27.432350 -0.736000 7.526605e+14 4.407414 79.487444 -0.058229 -0.043341 -0.885487 0.921780 566.512016 151.399145
75% 3.000000 3.673197 10.358275 12.773475 -20.727325 4.114835 24.702850 23.996850 38.066625 1.728500 1.266778e+15 4.476451 97.798098 0.226402 0.231063 -0.784391 0.992469 1138.048860 160.284484
max 4.000000 4.508350 33.051400 34.567400 0.016201 4.544850 64.919300 64.407200 68.864100 9.990000 1.800460e+15 4.699956 9094.879640 0.953004 0.999934 0.999996 0.996564 28946.727126 179.519781
In [7]:
t.dbs().Draw()
In [8]:
t.soe().Draw()
In [ ]:
t.analytical().Draw()
In [ ]:
 
In [ ]:
 
In [ ]:
 
In [ ]:
 
In [9]:
t1 = compton.ImagingData(catalog['test'], 2)
df = t1.df()
In [10]:
t1.dbs().Draw()
Warning in <TROOT::Append>: Replacing existing TH1: Backprojection (Potential memory leak).
In [11]:
t1.soe().Draw()
Warning in <TROOT::Append>: Replacing existing TH1: SOE (Potential memory leak).
In [ ]:
 
In [13]:
t2 = compton.ImagingData(catalog['test'], 5)
df = t2.df()
In [14]:
t2.dbs().Draw()
Warning in <TROOT::Append>: Replacing existing TH1: Backprojection (Potential memory leak).
In [17]:
t2.soe().Draw()
Warning in <TROOT::Append>: Replacing existing TH1: SOE (Potential memory leak).
In [ ]:
 
In [ ]:
 
In [6]:
t3 = compton.ImagingData(catalog['test'], 10)
df = t3.df()
In [7]:
t3.soe().Draw()
In [ ]:
 
In [ ]:
 
In [ ]:
 
In [9]:
p = ROOT.Get_Analytical_Image(
     100,
    -250.0,
     250.0,
     100,
    -250.0,
     250.0,
    "Backprojection",
    len(df.index),
    df.X_s.to_numpy(),
    df.Y_s.to_numpy(),
    df.Z_s.to_numpy(),
    df.E_s.to_numpy(),
    df.X_a.to_numpy(),
    df.Y_a.to_numpy(),
    df.Z_a.to_numpy(),
    df.E_a.to_numpy(),
    t.distance(),
    30, #degrees,
    0.001,
    0.5
)
0
Interaction: 1/20016 Out of bounds for computation -> 0.72847[0.001,0.5]
Interaction: 2/20016 Out of bounds for computation -> 2.69393[0.001,0.5]
Interaction: 3/20016 Out of bounds for computation -> 0.895675[0.001,0.5]
Interaction: 4/20016 Out of bounds for computation -> 2.1324[0.001,0.5]
Interaction: 5/20016 Out of bounds for computation -> 1.38315[0.001,0.5]
Interaction: 6/20016 Out of bounds for computation -> 0.644307[0.001,0.5]
Interaction: 7/20016 Out of bounds for computation -> 0.523246[0.001,0.5]
Interaction: 8/20016 Out of bounds for computation -> 0.798654[0.001,0.5]
Interaction: 9/20016 Out of bounds for computation -> 1.36559[0.001,0.5]
Interaction: 10/20016 Out of bounds for computation -> 0.655971[0.001,0.5]
11
12
Interaction: 13/20016 Out of bounds for computation -> 2.23221[0.001,0.5]
Interaction: 14/20016 Out of bounds for computation -> 0.62327[0.001,0.5]
15
Interaction: 16/20016 Out of bounds for computation -> 0.504021[0.001,0.5]
Interaction: 17/20016 Out of bounds for computation -> 2.03633[0.001,0.5]
18
Interaction: 19/20016 Out of bounds for computation -> nan[0.001,0.5]
20
Interaction: 21/20016 Out of bounds for computation -> 1.53439[0.001,0.5]
22
23
24
Interaction: 25/20016 Out of bounds for computation -> 1.46058[0.001,0.5]
Interaction: 26/20016 Out of bounds for computation -> 0.592497[0.001,0.5]
Interaction: 27/20016 Out of bounds for computation -> 1.8856[0.001,0.5]
28
29
30
31
32
33
34
35
36
37
38
Interaction: 39/20016 Out of bounds for computation -> 1.38706[0.001,0.5]
Interaction: 40/20016 Out of bounds for computation -> 1.4047[0.001,0.5]
41
Interaction: 42/20016 Out of bounds for computation -> 1.12808[0.001,0.5]
43
44
Interaction: 45/20016 Out of bounds for computation -> 1.05288[0.001,0.5]
46
47
Interaction: 48/20016 Out of bounds for computation -> 0.674377[0.001,0.5]
Interaction: 49/20016 Out of bounds for computation -> 1.12682[0.001,0.5]
50
51
Interaction: 52/20016 Out of bounds for computation -> 0.953125[0.001,0.5]
53
54
55
Interaction: 56/20016 Out of bounds for computation -> 0.684428[0.001,0.5]
57
Interaction: 58/20016 Out of bounds for computation -> 2.28417[0.001,0.5]
59
60
61
Interaction: 62/20016 Out of bounds for computation -> 1.80119[0.001,0.5]
Interaction: 63/20016 Out of bounds for computation -> nan[0.001,0.5]
64
65
Interaction: 66/20016 Out of bounds for computation -> 0.50978[0.001,0.5]
Interaction: 67/20016 Out of bounds for computation -> 2.27797[0.001,0.5]
68
Interaction: 69/20016 Out of bounds for computation -> 1.09146[0.001,0.5]
Interaction: 70/20016 Out of bounds for computation -> 0.527398[0.001,0.5]
71
72
Interaction: 73/20016 Out of bounds for computation -> 0.918397[0.001,0.5]
74
Interaction: 75/20016 Out of bounds for computation -> 0.608259[0.001,0.5]
Interaction: 76/20016 Out of bounds for computation -> 0.718331[0.001,0.5]
Interaction: 77/20016 Out of bounds for computation -> 2.44147[0.001,0.5]
78
79
Interaction: 80/20016 Out of bounds for computation -> 0.768071[0.001,0.5]
81
Interaction: 82/20016 Out of bounds for computation -> 2.64501[0.001,0.5]
83
Interaction: 84/20016 Out of bounds for computation -> nan[0.001,0.5]
85
Interaction: 86/20016 Out of bounds for computation -> 0.683322[0.001,0.5]
87
88
Interaction: 89/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 90/20016 Out of bounds for computation -> 1.46827[0.001,0.5]
Interaction: 91/20016 Out of bounds for computation -> 2.1682[0.001,0.5]
92
Interaction: 93/20016 Out of bounds for computation -> 2.57072[0.001,0.5]
94
Interaction: 95/20016 Out of bounds for computation -> 0.708502[0.001,0.5]
96
97
98
Interaction: 99/20016 Out of bounds for computation -> 0.950047[0.001,0.5]
100
Interaction: 101/20016 Out of bounds for computation -> 2.55358[0.001,0.5]
Interaction: 102/20016 Out of bounds for computation -> 1.03843[0.001,0.5]
Interaction: 103/20016 Out of bounds for computation -> 2.32337[0.001,0.5]
104
Interaction: 105/20016 Out of bounds for computation -> nan[0.001,0.5]
106
Interaction: 107/20016 Out of bounds for computation -> 1.39865[0.001,0.5]
108
Interaction: 109/20016 Out of bounds for computation -> 1.5896[0.001,0.5]
110
Interaction: 111/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 112/20016 Out of bounds for computation -> 1.74462[0.001,0.5]
113
114
115
Interaction: 116/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 117/20016 Out of bounds for computation -> 1.28485[0.001,0.5]
Interaction: 118/20016 Out of bounds for computation -> 1.46983[0.001,0.5]
119
Interaction: 120/20016 Out of bounds for computation -> 1.8151[0.001,0.5]
121
Interaction: 122/20016 Out of bounds for computation -> 0.792245[0.001,0.5]
Interaction: 123/20016 Out of bounds for computation -> 1.38456[0.001,0.5]
Interaction: 124/20016 Out of bounds for computation -> 0.684711[0.001,0.5]
125
Interaction: 126/20016 Out of bounds for computation -> 1.66249[0.001,0.5]
Interaction: 127/20016 Out of bounds for computation -> 0.986016[0.001,0.5]
128
Interaction: 129/20016 Out of bounds for computation -> 1.95707[0.001,0.5]
Interaction: 130/20016 Out of bounds for computation -> 1.40486[0.001,0.5]
131
Interaction: 132/20016 Out of bounds for computation -> 1.76477[0.001,0.5]
133
134
Interaction: 135/20016 Out of bounds for computation -> 1.13896[0.001,0.5]
136
137
138
139
Interaction: 140/20016 Out of bounds for computation -> 1.43557[0.001,0.5]
141
142
143
144
145
Interaction: 146/20016 Out of bounds for computation -> 1.08202[0.001,0.5]
147
148
149
Interaction: 150/20016 Out of bounds for computation -> 2.77485[0.001,0.5]
151
Interaction: 152/20016 Out of bounds for computation -> 1.86584[0.001,0.5]
153
154
155
156
Interaction: 157/20016 Out of bounds for computation -> 0.926692[0.001,0.5]
158
159
Interaction: 160/20016 Out of bounds for computation -> 0.692687[0.001,0.5]
161
162
Interaction: 163/20016 Out of bounds for computation -> 1.4493[0.001,0.5]
164
165
Interaction: 166/20016 Out of bounds for computation -> nan[0.001,0.5]
167
168
169
170
171
172
Interaction: 173/20016 Out of bounds for computation -> 0.651669[0.001,0.5]
174
175
Interaction: 176/20016 Out of bounds for computation -> 2.39816[0.001,0.5]
Interaction: 177/20016 Out of bounds for computation -> 2.16431[0.001,0.5]
Interaction: 178/20016 Out of bounds for computation -> 0.549717[0.001,0.5]
Interaction: 179/20016 Out of bounds for computation -> 0.806186[0.001,0.5]
Interaction: 180/20016 Out of bounds for computation -> nan[0.001,0.5]
181
Interaction: 182/20016 Out of bounds for computation -> 1.31466[0.001,0.5]
Interaction: 183/20016 Out of bounds for computation -> 0.826809[0.001,0.5]
184
185
186
187
Interaction: 188/20016 Out of bounds for computation -> 0.949817[0.001,0.5]
189
190
191
192
Interaction: 193/20016 Out of bounds for computation -> 1.49578[0.001,0.5]
194
195
196
197
198
199
200
201
Interaction: 202/20016 Out of bounds for computation -> 0.56484[0.001,0.5]
203
204
205
206
207
208
209
210
211
212
Interaction: 213/20016 Out of bounds for computation -> 2.33491[0.001,0.5]
Interaction: 214/20016 Out of bounds for computation -> 0.726216[0.001,0.5]
Interaction: 215/20016 Out of bounds for computation -> 0.634811[0.001,0.5]
Interaction: 216/20016 Out of bounds for computation -> 2.75599[0.001,0.5]
217
218
219
220
221
222
223
224
225
226
Interaction: 227/20016 Out of bounds for computation -> 1.73209[0.001,0.5]
Interaction: 228/20016 Out of bounds for computation -> 1.64537[0.001,0.5]
Interaction: 229/20016 Out of bounds for computation -> 0.882286[0.001,0.5]
Interaction: 230/20016 Out of bounds for computation -> 1.89118[0.001,0.5]
Interaction: 231/20016 Out of bounds for computation -> 0.564605[0.001,0.5]
232
Interaction: 233/20016 Out of bounds for computation -> 1.88047[0.001,0.5]
234
235
Interaction: 236/20016 Out of bounds for computation -> nan[0.001,0.5]
237
Interaction: 238/20016 Out of bounds for computation -> 0.739837[0.001,0.5]
Interaction: 239/20016 Out of bounds for computation -> 0.543461[0.001,0.5]
240
241
242
243
244
245
246
Interaction: 247/20016 Out of bounds for computation -> 0.700227[0.001,0.5]
248
Interaction: 249/20016 Out of bounds for computation -> 0.561234[0.001,0.5]
250
251
Interaction: 252/20016 Out of bounds for computation -> nan[0.001,0.5]
253
254
Interaction: 255/20016 Out of bounds for computation -> 0.774234[0.001,0.5]
256
257
258
Interaction: 259/20016 Out of bounds for computation -> 0.61104[0.001,0.5]
Interaction: 260/20016 Out of bounds for computation -> nan[0.001,0.5]
261
Interaction: 262/20016 Out of bounds for computation -> 2.00166[0.001,0.5]
Interaction: 263/20016 Out of bounds for computation -> 0.566127[0.001,0.5]
264
265
266
Interaction: 267/20016 Out of bounds for computation -> 0.570194[0.001,0.5]
268
269
Interaction: 270/20016 Out of bounds for computation -> 0.74596[0.001,0.5]
271
272
273
274
275
276
277
278
Interaction: 279/20016 Out of bounds for computation -> 1.07915[0.001,0.5]
Interaction: 280/20016 Out of bounds for computation -> 2.40771[0.001,0.5]
281
282
283
284
285
286
287
288
Interaction: 289/20016 Out of bounds for computation -> 2.83273[0.001,0.5]
Interaction: 290/20016 Out of bounds for computation -> nan[0.001,0.5]
291
292
Interaction: 293/20016 Out of bounds for computation -> 2.53342[0.001,0.5]
Interaction: 294/20016 Out of bounds for computation -> 2.05853[0.001,0.5]
Interaction: 295/20016 Out of bounds for computation -> 2.02421[0.001,0.5]
Interaction: 296/20016 Out of bounds for computation -> 1.36472[0.001,0.5]
297
298
299
300
301
302
303
304
Interaction: 305/20016 Out of bounds for computation -> 0.994475[0.001,0.5]
Interaction: 306/20016 Out of bounds for computation -> 0.715779[0.001,0.5]
307
308
309
Interaction: 310/20016 Out of bounds for computation -> 1.56083[0.001,0.5]
Interaction: 311/20016 Out of bounds for computation -> 1.98344[0.001,0.5]
Interaction: 312/20016 Out of bounds for computation -> 1.83145[0.001,0.5]
313
314
315
Interaction: 316/20016 Out of bounds for computation -> 1.42221[0.001,0.5]
317
318
319
Interaction: 320/20016 Out of bounds for computation -> nan[0.001,0.5]
321
322
323
Interaction: 324/20016 Out of bounds for computation -> 1.38576[0.001,0.5]
325
326
327
Interaction: 328/20016 Out of bounds for computation -> 2.35134[0.001,0.5]
329
Interaction: 330/20016 Out of bounds for computation -> 0.694135[0.001,0.5]
331
332
333
Interaction: 334/20016 Out of bounds for computation -> 0.526932[0.001,0.5]
335
336
337
338
Interaction: 339/20016 Out of bounds for computation -> 0.717467[0.001,0.5]
Interaction: 340/20016 Out of bounds for computation -> 0.614629[0.001,0.5]
Interaction: 341/20016 Out of bounds for computation -> 0.596877[0.001,0.5]
342
343
344
345
346
Interaction: 347/20016 Out of bounds for computation -> 1.36583[0.001,0.5]
348
349
Interaction: 350/20016 Out of bounds for computation -> 0.872429[0.001,0.5]
351
Interaction: 352/20016 Out of bounds for computation -> 0.546144[0.001,0.5]
353
354
355
Interaction: 356/20016 Out of bounds for computation -> 1.57375[0.001,0.5]
Interaction: 357/20016 Out of bounds for computation -> nan[0.001,0.5]
358
Interaction: 359/20016 Out of bounds for computation -> nan[0.001,0.5]
360
Interaction: 361/20016 Out of bounds for computation -> 0.719968[0.001,0.5]
362
Interaction: 363/20016 Out of bounds for computation -> 2.6328[0.001,0.5]
364
Interaction: 365/20016 Out of bounds for computation -> nan[0.001,0.5]
366
367
Interaction: 368/20016 Out of bounds for computation -> 1.12839[0.001,0.5]
369
370
Interaction: 371/20016 Out of bounds for computation -> 2.52637[0.001,0.5]
Interaction: 372/20016 Out of bounds for computation -> 0.527342[0.001,0.5]
373
Interaction: 374/20016 Out of bounds for computation -> 0.881294[0.001,0.5]
375
376
Interaction: 377/20016 Out of bounds for computation -> 0.646633[0.001,0.5]
378
Interaction: 379/20016 Out of bounds for computation -> 1.76056[0.001,0.5]
380
381
Interaction: 382/20016 Out of bounds for computation -> 0.691415[0.001,0.5]
383
384
385
Interaction: 386/20016 Out of bounds for computation -> 2.48388[0.001,0.5]
Interaction: 387/20016 Out of bounds for computation -> nan[0.001,0.5]
388
Interaction: 389/20016 Out of bounds for computation -> 1.26223[0.001,0.5]
390
Interaction: 391/20016 Out of bounds for computation -> 0.637517[0.001,0.5]
Interaction: 392/20016 Out of bounds for computation -> 1.4079[0.001,0.5]
Interaction: 393/20016 Out of bounds for computation -> 1.14925[0.001,0.5]
394
395
Interaction: 396/20016 Out of bounds for computation -> 0.531494[0.001,0.5]
397
Interaction: 398/20016 Out of bounds for computation -> 0.58437[0.001,0.5]
399
Interaction: 400/20016 Out of bounds for computation -> 1.24345[0.001,0.5]
Interaction: 401/20016 Out of bounds for computation -> 0.715285[0.001,0.5]
Interaction: 402/20016 Out of bounds for computation -> 0.540868[0.001,0.5]
Interaction: 403/20016 Out of bounds for computation -> 2.48074[0.001,0.5]
404
405
Interaction: 406/20016 Out of bounds for computation -> 2.17145[0.001,0.5]
407
408
409
Interaction: 410/20016 Out of bounds for computation -> 0.963915[0.001,0.5]
Interaction: 411/20016 Out of bounds for computation -> 1.78346[0.001,0.5]
412
413
Interaction: 414/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 415/20016 Out of bounds for computation -> 1.48035[0.001,0.5]
416
Interaction: 417/20016 Out of bounds for computation -> 1.19073[0.001,0.5]
418
419
420
421
Interaction: 422/20016 Out of bounds for computation -> 0.646941[0.001,0.5]
423
424
Interaction: 425/20016 Out of bounds for computation -> 1.56496[0.001,0.5]
426
427
428
Interaction: 429/20016 Out of bounds for computation -> 2.53901[0.001,0.5]
430
Interaction: 431/20016 Out of bounds for computation -> 0.601954[0.001,0.5]
432
Interaction: 433/20016 Out of bounds for computation -> 0.813816[0.001,0.5]
Interaction: 434/20016 Out of bounds for computation -> 0.562667[0.001,0.5]
435
436
437
438
Interaction: 439/20016 Out of bounds for computation -> 1.02003[0.001,0.5]
440
441
Interaction: 442/20016 Out of bounds for computation -> 0.506973[0.001,0.5]
Interaction: 443/20016 Out of bounds for computation -> 1.4607[0.001,0.5]
Interaction: 444/20016 Out of bounds for computation -> 1.10151[0.001,0.5]
445
Interaction: 446/20016 Out of bounds for computation -> 0.908041[0.001,0.5]
447
448
Interaction: 449/20016 Out of bounds for computation -> nan[0.001,0.5]
450
Interaction: 451/20016 Out of bounds for computation -> 0.847439[0.001,0.5]
452
Interaction: 453/20016 Out of bounds for computation -> nan[0.001,0.5]
454
Interaction: 455/20016 Out of bounds for computation -> 1.16078[0.001,0.5]
456
Interaction: 457/20016 Out of bounds for computation -> 0.925853[0.001,0.5]
458
459
Interaction: 460/20016 Out of bounds for computation -> 1.1052[0.001,0.5]
Interaction: 461/20016 Out of bounds for computation -> 2.19763[0.001,0.5]
Interaction: 462/20016 Out of bounds for computation -> 1.83967[0.001,0.5]
463
Interaction: 464/20016 Out of bounds for computation -> 0.626788[0.001,0.5]
465
Interaction: 466/20016 Out of bounds for computation -> 2.51245[0.001,0.5]
Interaction: 467/20016 Out of bounds for computation -> 1.26955[0.001,0.5]
468
Interaction: 469/20016 Out of bounds for computation -> 0.651677[0.001,0.5]
Interaction: 470/20016 Out of bounds for computation -> 0.535252[0.001,0.5]
Interaction: 471/20016 Out of bounds for computation -> 2.73826[0.001,0.5]
472
Interaction: 473/20016 Out of bounds for computation -> 1.1297[0.001,0.5]
474
Interaction: 475/20016 Out of bounds for computation -> 2.40218[0.001,0.5]
Interaction: 476/20016 Out of bounds for computation -> 0.755006[0.001,0.5]
477
Interaction: 478/20016 Out of bounds for computation -> 0.824884[0.001,0.5]
Interaction: 479/20016 Out of bounds for computation -> 1.10644[0.001,0.5]
480
481
482
Interaction: 483/20016 Out of bounds for computation -> 0.912717[0.001,0.5]
Interaction: 484/20016 Out of bounds for computation -> 2.18766[0.001,0.5]
485
Interaction: 486/20016 Out of bounds for computation -> 2.03938[0.001,0.5]
487
Interaction: 488/20016 Out of bounds for computation -> 1.69979[0.001,0.5]
Interaction: 489/20016 Out of bounds for computation -> 1.43646[0.001,0.5]
Interaction: 490/20016 Out of bounds for computation -> 0.614384[0.001,0.5]
491
492
Interaction: 493/20016 Out of bounds for computation -> 2.08665[0.001,0.5]
Interaction: 494/20016 Out of bounds for computation -> 2.34311[0.001,0.5]
495
496
Interaction: 497/20016 Out of bounds for computation -> 2.73344[0.001,0.5]
498
Interaction: 499/20016 Out of bounds for computation -> 0.733914[0.001,0.5]
500
501
502
Interaction: 503/20016 Out of bounds for computation -> 1.62909[0.001,0.5]
504
505
Interaction: 506/20016 Out of bounds for computation -> 1.25125[0.001,0.5]
507
Interaction: 508/20016 Out of bounds for computation -> 1.091[0.001,0.5]
509
Interaction: 510/20016 Out of bounds for computation -> 1.25767[0.001,0.5]
Interaction: 511/20016 Out of bounds for computation -> 0.74732[0.001,0.5]
512
Interaction: 513/20016 Out of bounds for computation -> 0.510171[0.001,0.5]
514
Interaction: 515/20016 Out of bounds for computation -> 1.80431[0.001,0.5]
Interaction: 516/20016 Out of bounds for computation -> 2.40561[0.001,0.5]
Interaction: 517/20016 Out of bounds for computation -> 0.574564[0.001,0.5]
518
Interaction: 519/20016 Out of bounds for computation -> 0.560938[0.001,0.5]
520
Interaction: 521/20016 Out of bounds for computation -> nan[0.001,0.5]
522
523
Interaction: 524/20016 Out of bounds for computation -> 2.27348[0.001,0.5]
525
526
527
528
Interaction: 529/20016 Out of bounds for computation -> 0.559233[0.001,0.5]
530
Interaction: 531/20016 Out of bounds for computation -> 1.40302[0.001,0.5]
Interaction: 532/20016 Out of bounds for computation -> 1.39875[0.001,0.5]
533
Interaction: 534/20016 Out of bounds for computation -> 0.921836[0.001,0.5]
535
536
Interaction: 537/20016 Out of bounds for computation -> 0.576001[0.001,0.5]
Interaction: 538/20016 Out of bounds for computation -> 0.892879[0.001,0.5]
Interaction: 539/20016 Out of bounds for computation -> 0.627129[0.001,0.5]
540
Interaction: 541/20016 Out of bounds for computation -> 0.532871[0.001,0.5]
Interaction: 542/20016 Out of bounds for computation -> 0.583258[0.001,0.5]
Interaction: 543/20016 Out of bounds for computation -> 1.445[0.001,0.5]
544
545
546
Interaction: 547/20016 Out of bounds for computation -> 1.38996[0.001,0.5]
548
Interaction: 549/20016 Out of bounds for computation -> 0.549146[0.001,0.5]
Interaction: 550/20016 Out of bounds for computation -> 0.519387[0.001,0.5]
551
552
553
Interaction: 554/20016 Out of bounds for computation -> 1.54603[0.001,0.5]
555
Interaction: 556/20016 Out of bounds for computation -> 0.531108[0.001,0.5]
557
558
Interaction: 559/20016 Out of bounds for computation -> 0.633264[0.001,0.5]
Interaction: 560/20016 Out of bounds for computation -> 0.756291[0.001,0.5]
Interaction: 561/20016 Out of bounds for computation -> 1.85846[0.001,0.5]
562
Interaction: 563/20016 Out of bounds for computation -> 0.586142[0.001,0.5]
564
565
Interaction: 566/20016 Out of bounds for computation -> 1.38571[0.001,0.5]
Interaction: 567/20016 Out of bounds for computation -> 0.6431[0.001,0.5]
568
569
570
571
Interaction: 572/20016 Out of bounds for computation -> 2.50676[0.001,0.5]
573
Interaction: 574/20016 Out of bounds for computation -> 0.716758[0.001,0.5]
575
576
Interaction: 577/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 578/20016 Out of bounds for computation -> 1.66083[0.001,0.5]
Interaction: 579/20016 Out of bounds for computation -> 1.42351[0.001,0.5]
580
Interaction: 581/20016 Out of bounds for computation -> 1.28807[0.001,0.5]
582
583
Interaction: 584/20016 Out of bounds for computation -> 1.32816[0.001,0.5]
585
Interaction: 586/20016 Out of bounds for computation -> 0.925233[0.001,0.5]
587
588
Interaction: 589/20016 Out of bounds for computation -> 0.675314[0.001,0.5]
590
591
592
593
594
Interaction: 595/20016 Out of bounds for computation -> 2.63074[0.001,0.5]
Interaction: 596/20016 Out of bounds for computation -> 2.39259[0.001,0.5]
597
598
599
600
601
602
603
604
605
606
Interaction: 607/20016 Out of bounds for computation -> 1.95884[0.001,0.5]
Interaction: 608/20016 Out of bounds for computation -> 2.21607[0.001,0.5]
Interaction: 609/20016 Out of bounds for computation -> 1.99522[0.001,0.5]
610
611
Interaction: 612/20016 Out of bounds for computation -> 1.42163[0.001,0.5]
613
Interaction: 614/20016 Out of bounds for computation -> 2.64372[0.001,0.5]
Interaction: 615/20016 Out of bounds for computation -> nan[0.001,0.5]
616
Interaction: 617/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 618/20016 Out of bounds for computation -> 0.716086[0.001,0.5]
619
620
Interaction: 621/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 622/20016 Out of bounds for computation -> 2.428[0.001,0.5]
Interaction: 623/20016 Out of bounds for computation -> 2.0355[0.001,0.5]
624
625
626
627
Interaction: 628/20016 Out of bounds for computation -> 1.48914[0.001,0.5]
629
630
Interaction: 631/20016 Out of bounds for computation -> 1.67823[0.001,0.5]
632
Interaction: 633/20016 Out of bounds for computation -> 1.83458[0.001,0.5]
Interaction: 634/20016 Out of bounds for computation -> 2.52423[0.001,0.5]
635
636
637
638
Interaction: 639/20016 Out of bounds for computation -> 2.80811[0.001,0.5]
Interaction: 640/20016 Out of bounds for computation -> 1.49585[0.001,0.5]
Interaction: 641/20016 Out of bounds for computation -> nan[0.001,0.5]
642
Interaction: 643/20016 Out of bounds for computation -> 1.74651[0.001,0.5]
Interaction: 644/20016 Out of bounds for computation -> 1.46211[0.001,0.5]
Interaction: 645/20016 Out of bounds for computation -> 2.16357[0.001,0.5]
646
647
648
649
Interaction: 650/20016 Out of bounds for computation -> 2.87238[0.001,0.5]
Interaction: 651/20016 Out of bounds for computation -> 2.23261[0.001,0.5]
652
Interaction: 653/20016 Out of bounds for computation -> 1.4331[0.001,0.5]
654
655
656
Interaction: 657/20016 Out of bounds for computation -> 2.3667[0.001,0.5]
Interaction: 658/20016 Out of bounds for computation -> 0.794901[0.001,0.5]
659
660
Interaction: 661/20016 Out of bounds for computation -> 0.627104[0.001,0.5]
662
663
664
665
Interaction: 666/20016 Out of bounds for computation -> nan[0.001,0.5]
667
668
669
670
671
Interaction: 672/20016 Out of bounds for computation -> 1.14919[0.001,0.5]
673
674
Interaction: 675/20016 Out of bounds for computation -> nan[0.001,0.5]
676
677
Interaction: 678/20016 Out of bounds for computation -> 1.00242[0.001,0.5]
Interaction: 679/20016 Out of bounds for computation -> 1.12431[0.001,0.5]
Interaction: 680/20016 Out of bounds for computation -> 0.521583[0.001,0.5]
Interaction: 681/20016 Out of bounds for computation -> 1.98526[0.001,0.5]
682
683
Interaction: 684/20016 Out of bounds for computation -> 2.31177[0.001,0.5]
Interaction: 685/20016 Out of bounds for computation -> nan[0.001,0.5]
686
687
Interaction: 688/20016 Out of bounds for computation -> 0.991046[0.001,0.5]
689
690
Interaction: 691/20016 Out of bounds for computation -> 2.0016[0.001,0.5]
Interaction: 692/20016 Out of bounds for computation -> 1.39602[0.001,0.5]
693
694
Interaction: 695/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 696/20016 Out of bounds for computation -> 0.613153[0.001,0.5]
Interaction: 697/20016 Out of bounds for computation -> 0.537991[0.001,0.5]
Interaction: 698/20016 Out of bounds for computation -> 1.96778[0.001,0.5]
Interaction: 699/20016 Out of bounds for computation -> 1.41167[0.001,0.5]
700
701
702
703
Interaction: 704/20016 Out of bounds for computation -> 1.40373[0.001,0.5]
705
Interaction: 706/20016 Out of bounds for computation -> 1.42625[0.001,0.5]
707
708
709
710
Interaction: 711/20016 Out of bounds for computation -> 0.642293[0.001,0.5]
712
713
714
Interaction: 715/20016 Out of bounds for computation -> 0.835967[0.001,0.5]
716
717
718
719
720
Interaction: 721/20016 Out of bounds for computation -> 1.03512[0.001,0.5]
722
Interaction: 723/20016 Out of bounds for computation -> 0.537573[0.001,0.5]
724
Interaction: 725/20016 Out of bounds for computation -> 2.10814[0.001,0.5]
726
727
728
Interaction: 729/20016 Out of bounds for computation -> 0.783593[0.001,0.5]
Interaction: 730/20016 Out of bounds for computation -> 2.34878[0.001,0.5]
Interaction: 731/20016 Out of bounds for computation -> 0.523805[0.001,0.5]
732
Interaction: 733/20016 Out of bounds for computation -> nan[0.001,0.5]
734
Interaction: 735/20016 Out of bounds for computation -> 1.97715[0.001,0.5]
736
Interaction: 737/20016 Out of bounds for computation -> 0.905871[0.001,0.5]
738
739
740
Interaction: 741/20016 Out of bounds for computation -> 0.786411[0.001,0.5]
742
Interaction: 743/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 744/20016 Out of bounds for computation -> 2.18067[0.001,0.5]
745
746
Interaction: 747/20016 Out of bounds for computation -> 0.945104[0.001,0.5]
Interaction: 748/20016 Out of bounds for computation -> 2.12629[0.001,0.5]
Interaction: 749/20016 Out of bounds for computation -> 0.774914[0.001,0.5]
Interaction: 750/20016 Out of bounds for computation -> 2.57072[0.001,0.5]
751
Interaction: 752/20016 Out of bounds for computation -> 2.22202[0.001,0.5]
753
Interaction: 754/20016 Out of bounds for computation -> 0.563259[0.001,0.5]
755
756
757
Interaction: 758/20016 Out of bounds for computation -> 1.89819[0.001,0.5]
Interaction: 759/20016 Out of bounds for computation -> 1.21848[0.001,0.5]
Interaction: 760/20016 Out of bounds for computation -> 1.37539[0.001,0.5]
761
Interaction: 762/20016 Out of bounds for computation -> 0.527455[0.001,0.5]
Interaction: 763/20016 Out of bounds for computation -> 0.512081[0.001,0.5]
764
Interaction: 765/20016 Out of bounds for computation -> 2.22188[0.001,0.5]
Interaction: 766/20016 Out of bounds for computation -> 1.29336[0.001,0.5]
767
768
769
Interaction: 770/20016 Out of bounds for computation -> 0.825509[0.001,0.5]
Interaction: 771/20016 Out of bounds for computation -> 2.72222[0.001,0.5]
772
773
774
Interaction: 775/20016 Out of bounds for computation -> 0.553824[0.001,0.5]
Interaction: 776/20016 Out of bounds for computation -> 2.54853[0.001,0.5]
777
778
Interaction: 779/20016 Out of bounds for computation -> 2.16815[0.001,0.5]
780
781
782
Interaction: 783/20016 Out of bounds for computation -> 2.62345[0.001,0.5]
784
Interaction: 785/20016 Out of bounds for computation -> 0.884079[0.001,0.5]
Interaction: 786/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 787/20016 Out of bounds for computation -> 0.608657[0.001,0.5]
Interaction: 788/20016 Out of bounds for computation -> 0.502012[0.001,0.5]
Interaction: 789/20016 Out of bounds for computation -> 0.564918[0.001,0.5]
Interaction: 790/20016 Out of bounds for computation -> 1.42128[0.001,0.5]
Interaction: 791/20016 Out of bounds for computation -> 1.8028[0.001,0.5]
792
Interaction: 793/20016 Out of bounds for computation -> 0.508574[0.001,0.5]
Interaction: 794/20016 Out of bounds for computation -> 1.45154[0.001,0.5]
Interaction: 795/20016 Out of bounds for computation -> 0.753125[0.001,0.5]
Interaction: 796/20016 Out of bounds for computation -> 0.710923[0.001,0.5]
Interaction: 797/20016 Out of bounds for computation -> 0.620102[0.001,0.5]
798
799
800
801
Interaction: 802/20016 Out of bounds for computation -> 0.563112[0.001,0.5]
Interaction: 803/20016 Out of bounds for computation -> 0.708621[0.001,0.5]
804
805
Interaction: 806/20016 Out of bounds for computation -> 1.45479[0.001,0.5]
807
Interaction: 808/20016 Out of bounds for computation -> 2.92564[0.001,0.5]
809
Interaction: 810/20016 Out of bounds for computation -> 1.46746[0.001,0.5]
Interaction: 811/20016 Out of bounds for computation -> 1.45079[0.001,0.5]
812
Interaction: 813/20016 Out of bounds for computation -> 0.786715[0.001,0.5]
Interaction: 814/20016 Out of bounds for computation -> 1.63627[0.001,0.5]
815
Interaction: 816/20016 Out of bounds for computation -> 0.641151[0.001,0.5]
817
Interaction: 818/20016 Out of bounds for computation -> 1.03372[0.001,0.5]
Interaction: 819/20016 Out of bounds for computation -> 2.25913[0.001,0.5]
Interaction: 820/20016 Out of bounds for computation -> nan[0.001,0.5]
821
822
823
Interaction: 824/20016 Out of bounds for computation -> 2.69976[0.001,0.5]
825
Interaction: 826/20016 Out of bounds for computation -> 1.13897[0.001,0.5]
Interaction: 827/20016 Out of bounds for computation -> 0.595047[0.001,0.5]
828
Interaction: 829/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 830/20016 Out of bounds for computation -> 1.09891[0.001,0.5]
831
Interaction: 832/20016 Out of bounds for computation -> 0.544734[0.001,0.5]
833
834
835
836
Interaction: 837/20016 Out of bounds for computation -> 2.73096[0.001,0.5]
838
Interaction: 839/20016 Out of bounds for computation -> 0.587538[0.001,0.5]
840
841
842
843
844
Interaction: 845/20016 Out of bounds for computation -> 1.34902[0.001,0.5]
Interaction: 846/20016 Out of bounds for computation -> 1.60539[0.001,0.5]
Interaction: 847/20016 Out of bounds for computation -> 0.760104[0.001,0.5]
Interaction: 848/20016 Out of bounds for computation -> 1.44582[0.001,0.5]
Interaction: 849/20016 Out of bounds for computation -> 2.63264[0.001,0.5]
850
851
852
853
854
Interaction: 855/20016 Out of bounds for computation -> 0.631619[0.001,0.5]
856
857
Interaction: 858/20016 Out of bounds for computation -> 0.620685[0.001,0.5]
859
860
861
862
863
864
Interaction: 865/20016 Out of bounds for computation -> 1.92587[0.001,0.5]
866
867
868
Interaction: 869/20016 Out of bounds for computation -> 1.21339[0.001,0.5]
870
871
872
Interaction: 873/20016 Out of bounds for computation -> 0.784257[0.001,0.5]
874
875
876
877
878
879
880
881
882
Interaction: 883/20016 Out of bounds for computation -> 1.73826[0.001,0.5]
Interaction: 884/20016 Out of bounds for computation -> 0.806876[0.001,0.5]
885
886
Interaction: 887/20016 Out of bounds for computation -> nan[0.001,0.5]
888
889
Interaction: 890/20016 Out of bounds for computation -> 0.714054[0.001,0.5]
Interaction: 891/20016 Out of bounds for computation -> 0.985554[0.001,0.5]
Interaction: 892/20016 Out of bounds for computation -> 1.35256[0.001,0.5]
Interaction: 893/20016 Out of bounds for computation -> 2.44267[0.001,0.5]
894
895
896
Interaction: 897/20016 Out of bounds for computation -> 0.583555[0.001,0.5]
898
Interaction: 899/20016 Out of bounds for computation -> 0.615551[0.001,0.5]
Interaction: 900/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 901/20016 Out of bounds for computation -> 1.34681[0.001,0.5]
902
Interaction: 903/20016 Out of bounds for computation -> 1.48072[0.001,0.5]
904
905
906
907
908
909
910
Interaction: 911/20016 Out of bounds for computation -> nan[0.001,0.5]
912
913
Interaction: 914/20016 Out of bounds for computation -> 1.09495[0.001,0.5]
Interaction: 915/20016 Out of bounds for computation -> 2.28322[0.001,0.5]
Interaction: 916/20016 Out of bounds for computation -> 0.789791[0.001,0.5]
917
918
Interaction: 919/20016 Out of bounds for computation -> 0.676223[0.001,0.5]
Interaction: 920/20016 Out of bounds for computation -> 0.752539[0.001,0.5]
921
922
923
924
925
926
Interaction: 927/20016 Out of bounds for computation -> 0.743668[0.001,0.5]
Interaction: 928/20016 Out of bounds for computation -> nan[0.001,0.5]
929
930
Interaction: 931/20016 Out of bounds for computation -> 0.595101[0.001,0.5]
932
933
934
Interaction: 935/20016 Out of bounds for computation -> 1.39504[0.001,0.5]
Interaction: 936/20016 Out of bounds for computation -> 1.41694[0.001,0.5]
937
Interaction: 938/20016 Out of bounds for computation -> 1.03172[0.001,0.5]
939
Interaction: 940/20016 Out of bounds for computation -> 0.501826[0.001,0.5]
Interaction: 941/20016 Out of bounds for computation -> 1.45892[0.001,0.5]
Interaction: 942/20016 Out of bounds for computation -> 1.51841[0.001,0.5]
Interaction: 943/20016 Out of bounds for computation -> nan[0.001,0.5]
944
Interaction: 945/20016 Out of bounds for computation -> 0.65408[0.001,0.5]
Interaction: 946/20016 Out of bounds for computation -> nan[0.001,0.5]
947
Interaction: 948/20016 Out of bounds for computation -> 0.679707[0.001,0.5]
949
Interaction: 950/20016 Out of bounds for computation -> 2.52199[0.001,0.5]
951
952
953
Interaction: 954/20016 Out of bounds for computation -> 0.686541[0.001,0.5]
Interaction: 955/20016 Out of bounds for computation -> 0.659873[0.001,0.5]
956
957
958
Interaction: 959/20016 Out of bounds for computation -> 0.929676[0.001,0.5]
960
961
962
963
Interaction: 964/20016 Out of bounds for computation -> 0.819729[0.001,0.5]
965
966
967
968
969
Interaction: 970/20016 Out of bounds for computation -> 1.48537[0.001,0.5]
971
Interaction: 972/20016 Out of bounds for computation -> 0.830799[0.001,0.5]
973
974
Interaction: 975/20016 Out of bounds for computation -> 1.17004[0.001,0.5]
Interaction: 976/20016 Out of bounds for computation -> 1.43402[0.001,0.5]
977
Interaction: 978/20016 Out of bounds for computation -> 0.621951[0.001,0.5]
Interaction: 979/20016 Out of bounds for computation -> 1.39531[0.001,0.5]
Interaction: 980/20016 Out of bounds for computation -> 1.40141[0.001,0.5]
Interaction: 981/20016 Out of bounds for computation -> 0.687247[0.001,0.5]
Interaction: 982/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 983/20016 Out of bounds for computation -> nan[0.001,0.5]
984
985
Interaction: 986/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 987/20016 Out of bounds for computation -> 1.11874[0.001,0.5]
Interaction: 988/20016 Out of bounds for computation -> 0.754086[0.001,0.5]
989
990
991
Interaction: 992/20016 Out of bounds for computation -> 0.692069[0.001,0.5]
Interaction: 993/20016 Out of bounds for computation -> 1.12816[0.001,0.5]
Interaction: 994/20016 Out of bounds for computation -> 2.62915[0.001,0.5]
995
996
Interaction: 997/20016 Out of bounds for computation -> 2.19418[0.001,0.5]
998
999
1000
1001
Interaction: 1002/20016 Out of bounds for computation -> 0.625183[0.001,0.5]
1003
1004
1005
1006
1007
Interaction: 1008/20016 Out of bounds for computation -> nan[0.001,0.5]
1009
Interaction: 1010/20016 Out of bounds for computation -> 0.805966[0.001,0.5]
1011
1012
Interaction: 1013/20016 Out of bounds for computation -> 0.657353[0.001,0.5]
Interaction: 1014/20016 Out of bounds for computation -> 0.684355[0.001,0.5]
1015
1016
Interaction: 1017/20016 Out of bounds for computation -> 0.690825[0.001,0.5]
1018
1019
1020
Interaction: 1021/20016 Out of bounds for computation -> nan[0.001,0.5]
1022
Interaction: 1023/20016 Out of bounds for computation -> 0.620227[0.001,0.5]
1024
Interaction: 1025/20016 Out of bounds for computation -> 1.18067[0.001,0.5]
Interaction: 1026/20016 Out of bounds for computation -> 0.609057[0.001,0.5]
Interaction: 1027/20016 Out of bounds for computation -> 0.665581[0.001,0.5]
1028
Interaction: 1029/20016 Out of bounds for computation -> nan[0.001,0.5]
1030
1031
Interaction: 1032/20016 Out of bounds for computation -> 2.12247[0.001,0.5]
1033
1034
1035
1036
1037
1038
1039
Interaction: 1040/20016 Out of bounds for computation -> 0.834858[0.001,0.5]
1041
1042
Interaction: 1043/20016 Out of bounds for computation -> 0.905923[0.001,0.5]
1044
1045
1046
Interaction: 1047/20016 Out of bounds for computation -> 1.45375[0.001,0.5]
1048
Interaction: 1049/20016 Out of bounds for computation -> 2.88101[0.001,0.5]
1050
1051
1052
Interaction: 1053/20016 Out of bounds for computation -> 2.45781[0.001,0.5]
1054
Interaction: 1055/20016 Out of bounds for computation -> 0.938697[0.001,0.5]
Interaction: 1056/20016 Out of bounds for computation -> 1.50691[0.001,0.5]
1057
Interaction: 1058/20016 Out of bounds for computation -> 0.6427[0.001,0.5]
1059
Interaction: 1060/20016 Out of bounds for computation -> 1.774[0.001,0.5]
Interaction: 1061/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 1062/20016 Out of bounds for computation -> 2.49956[0.001,0.5]
1063
1064
Interaction: 1065/20016 Out of bounds for computation -> 0.667981[0.001,0.5]
Interaction: 1066/20016 Out of bounds for computation -> nan[0.001,0.5]
1067
Interaction: 1068/20016 Out of bounds for computation -> 0.794665[0.001,0.5]
1069
Interaction: 1070/20016 Out of bounds for computation -> 1.83897[0.001,0.5]
Interaction: 1071/20016 Out of bounds for computation -> 0.757579[0.001,0.5]
1072
1073
1074
1075
1076
Interaction: 1077/20016 Out of bounds for computation -> 0.578949[0.001,0.5]
1078
1079
1080
Interaction: 1081/20016 Out of bounds for computation -> 1.47127[0.001,0.5]
Interaction: 1082/20016 Out of bounds for computation -> 1.7973[0.001,0.5]
1083
Interaction: 1084/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 1085/20016 Out of bounds for computation -> 2.42152[0.001,0.5]
Interaction: 1086/20016 Out of bounds for computation -> 2.282[0.001,0.5]
Interaction: 1087/20016 Out of bounds for computation -> 1.99686[0.001,0.5]
Interaction: 1088/20016 Out of bounds for computation -> 1.06597[0.001,0.5]
1089
Interaction: 1090/20016 Out of bounds for computation -> 1.14701[0.001,0.5]
Interaction: 1091/20016 Out of bounds for computation -> 0.550572[0.001,0.5]
1092
Interaction: 1093/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 1094/20016 Out of bounds for computation -> nan[0.001,0.5]
1095
1096
Interaction: 1097/20016 Out of bounds for computation -> 0.854229[0.001,0.5]
Interaction: 1098/20016 Out of bounds for computation -> nan[0.001,0.5]
1099
1100
1101
Interaction: 1102/20016 Out of bounds for computation -> 0.544995[0.001,0.5]
Interaction: 1103/20016 Out of bounds for computation -> 0.626668[0.001,0.5]
1104
1105
Interaction: 1106/20016 Out of bounds for computation -> 1.43982[0.001,0.5]
1107
Interaction: 1108/20016 Out of bounds for computation -> 0.948552[0.001,0.5]
1109
1110
Interaction: 1111/20016 Out of bounds for computation -> 1.49901[0.001,0.5]
Interaction: 1112/20016 Out of bounds for computation -> 1.76784[0.001,0.5]
1113
Interaction: 1114/20016 Out of bounds for computation -> 0.503018[0.001,0.5]
1115
1116
1117
Interaction: 1118/20016 Out of bounds for computation -> 0.833297[0.001,0.5]
Interaction: 1119/20016 Out of bounds for computation -> 1.76056[0.001,0.5]
Interaction: 1120/20016 Out of bounds for computation -> 0.607069[0.001,0.5]
1121
1122
Interaction: 1123/20016 Out of bounds for computation -> 1.78543[0.001,0.5]
Interaction: 1124/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 1125/20016 Out of bounds for computation -> 1.3973[0.001,0.5]
1126
Interaction: 1127/20016 Out of bounds for computation -> 1.55392[0.001,0.5]
1128
1129
1130
Interaction: 1131/20016 Out of bounds for computation -> 0.671736[0.001,0.5]
1132
1133
Interaction: 1134/20016 Out of bounds for computation -> 1.37186[0.001,0.5]
Interaction: 1135/20016 Out of bounds for computation -> 0.829505[0.001,0.5]
1136
1137
1138
1139
1140
Interaction: 1141/20016 Out of bounds for computation -> 2.09359[0.001,0.5]
1142
1143
1144
Interaction: 1145/20016 Out of bounds for computation -> 2.33437[0.001,0.5]
1146
Interaction: 1147/20016 Out of bounds for computation -> 2.07232[0.001,0.5]
1148
Interaction: 1149/20016 Out of bounds for computation -> 1.91812[0.001,0.5]
Interaction: 1150/20016 Out of bounds for computation -> nan[0.001,0.5]
1151
1152
1153
1154
1155
1156
1157
Interaction: 1158/20016 Out of bounds for computation -> nan[0.001,0.5]
1159
1160
Interaction: 1161/20016 Out of bounds for computation -> 0.588814[0.001,0.5]
1162
Interaction: 1163/20016 Out of bounds for computation -> nan[0.001,0.5]
1164
1165
1166
1167
1168
Interaction: 1169/20016 Out of bounds for computation -> 1.07299[0.001,0.5]
1170
Interaction: 1171/20016 Out of bounds for computation -> 1.06842[0.001,0.5]
1172
Interaction: 1173/20016 Out of bounds for computation -> 0.53711[0.001,0.5]
Interaction: 1174/20016 Out of bounds for computation -> 2.42339[0.001,0.5]
Interaction: 1175/20016 Out of bounds for computation -> 0.528673[0.001,0.5]
1176
1177
1178
1179
1180
1181
1182
Interaction: 1183/20016 Out of bounds for computation -> 1.42712[0.001,0.5]
Interaction: 1184/20016 Out of bounds for computation -> 0.524858[0.001,0.5]
1185
Interaction: 1186/20016 Out of bounds for computation -> 0.745034[0.001,0.5]
Interaction: 1187/20016 Out of bounds for computation -> 0.740698[0.001,0.5]
Interaction: 1188/20016 Out of bounds for computation -> 0.598603[0.001,0.5]
1189
1190
Interaction: 1191/20016 Out of bounds for computation -> 0.758419[0.001,0.5]
Interaction: 1192/20016 Out of bounds for computation -> 1.33563[0.001,0.5]
1193
Interaction: 1194/20016 Out of bounds for computation -> 0.611682[0.001,0.5]
Interaction: 1195/20016 Out of bounds for computation -> 2.77239[0.001,0.5]
Interaction: 1196/20016 Out of bounds for computation -> 0.540743[0.001,0.5]
1197
1198
Interaction: 1199/20016 Out of bounds for computation -> nan[0.001,0.5]
1200
1201
1202
1203
Interaction: 1204/20016 Out of bounds for computation -> 0.843402[0.001,0.5]
1205
Interaction: 1206/20016 Out of bounds for computation -> 1.16879[0.001,0.5]
Interaction: 1207/20016 Out of bounds for computation -> 1.03204[0.001,0.5]
Interaction: 1208/20016 Out of bounds for computation -> 1.01658[0.001,0.5]
1209
1210
Interaction: 1211/20016 Out of bounds for computation -> 0.745498[0.001,0.5]
Interaction: 1212/20016 Out of bounds for computation -> 0.809031[0.001,0.5]
Interaction: 1213/20016 Out of bounds for computation -> 1.24357[0.001,0.5]
1214
1215
1216
1217
1218
1219
Interaction: 1220/20016 Out of bounds for computation -> 2.2799[0.001,0.5]
1221
Interaction: 1222/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 1223/20016 Out of bounds for computation -> 1.0009[0.001,0.5]
Interaction: 1224/20016 Out of bounds for computation -> 1.83325[0.001,0.5]
Interaction: 1225/20016 Out of bounds for computation -> 0.597442[0.001,0.5]
1226
1227
Interaction: 1228/20016 Out of bounds for computation -> 0.660142[0.001,0.5]
Interaction: 1229/20016 Out of bounds for computation -> nan[0.001,0.5]
1230
1231
Interaction: 1232/20016 Out of bounds for computation -> 1.32085[0.001,0.5]
1233
Interaction: 1234/20016 Out of bounds for computation -> 0.889893[0.001,0.5]
1235
Interaction: 1236/20016 Out of bounds for computation -> 2.01976[0.001,0.5]
1237
1238
1239
1240
1241
Interaction: 1242/20016 Out of bounds for computation -> 0.696828[0.001,0.5]
1243
1244
Interaction: 1245/20016 Out of bounds for computation -> 0.750477[0.001,0.5]
1246
Interaction: 1247/20016 Out of bounds for computation -> 0.657858[0.001,0.5]
1248
Interaction: 1249/20016 Out of bounds for computation -> 0.608124[0.001,0.5]
1250
1251
1252
Interaction: 1253/20016 Out of bounds for computation -> 1.63849[0.001,0.5]
Interaction: 1254/20016 Out of bounds for computation -> 0.614834[0.001,0.5]
1255
Interaction: 1256/20016 Out of bounds for computation -> 0.511722[0.001,0.5]
Interaction: 1257/20016 Out of bounds for computation -> nan[0.001,0.5]
1258
Interaction: 1259/20016 Out of bounds for computation -> 0.59313[0.001,0.5]
1260
1261
Interaction: 1262/20016 Out of bounds for computation -> 0.794459[0.001,0.5]
Interaction: 1263/20016 Out of bounds for computation -> 1.41391[0.001,0.5]
Interaction: 1264/20016 Out of bounds for computation -> 1.21819[0.001,0.5]
Interaction: 1265/20016 Out of bounds for computation -> 2.5613[0.001,0.5]
Interaction: 1266/20016 Out of bounds for computation -> 1.91432[0.001,0.5]
1267
Interaction: 1268/20016 Out of bounds for computation -> 2.72427[0.001,0.5]
1269
1270
1271
1272
1273
1274
Interaction: 1275/20016 Out of bounds for computation -> 0.639303[0.001,0.5]
Interaction: 1276/20016 Out of bounds for computation -> 1.4283[0.001,0.5]
1277
Interaction: 1278/20016 Out of bounds for computation -> 0.814557[0.001,0.5]
1279
1280
Interaction: 1281/20016 Out of bounds for computation -> 1.47446[0.001,0.5]
Interaction: 1282/20016 Out of bounds for computation -> 2.34392[0.001,0.5]
1283
1284
Interaction: 1285/20016 Out of bounds for computation -> 1.4882[0.001,0.5]
1286
1287
1288
1289
Interaction: 1290/20016 Out of bounds for computation -> 0.674121[0.001,0.5]
Interaction: 1291/20016 Out of bounds for computation -> 1.13475[0.001,0.5]
1292
1293
1294
Interaction: 1295/20016 Out of bounds for computation -> 1.61344[0.001,0.5]
Interaction: 1296/20016 Out of bounds for computation -> 1.10333[0.001,0.5]
Interaction: 1297/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 1298/20016 Out of bounds for computation -> 0.592894[0.001,0.5]
1299
Interaction: 1300/20016 Out of bounds for computation -> 1.39526[0.001,0.5]
1301
Interaction: 1302/20016 Out of bounds for computation -> nan[0.001,0.5]
1303
Interaction: 1304/20016 Out of bounds for computation -> 0.793465[0.001,0.5]
1305
1306
Interaction: 1307/20016 Out of bounds for computation -> 0.641693[0.001,0.5]
Interaction: 1308/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 1309/20016 Out of bounds for computation -> 1.12887[0.001,0.5]
Interaction: 1310/20016 Out of bounds for computation -> 0.712723[0.001,0.5]
1311
1312
1313
1314
Interaction: 1315/20016 Out of bounds for computation -> 2.18423[0.001,0.5]
Interaction: 1316/20016 Out of bounds for computation -> 1.413[0.001,0.5]
Interaction: 1317/20016 Out of bounds for computation -> 0.775317[0.001,0.5]
1318
1319
Interaction: 1320/20016 Out of bounds for computation -> 0.752008[0.001,0.5]
Interaction: 1321/20016 Out of bounds for computation -> 2.0816[0.001,0.5]
Interaction: 1322/20016 Out of bounds for computation -> 0.933869[0.001,0.5]
1323
Interaction: 1324/20016 Out of bounds for computation -> 2.35484[0.001,0.5]
Interaction: 1325/20016 Out of bounds for computation -> 1.41352[0.001,0.5]
Interaction: 1326/20016 Out of bounds for computation -> 1.22202[0.001,0.5]
1327
Interaction: 1328/20016 Out of bounds for computation -> 1.07907[0.001,0.5]
1329
1330
Interaction: 1331/20016 Out of bounds for computation -> nan[0.001,0.5]
1332
1333
Interaction: 1334/20016 Out of bounds for computation -> nan[0.001,0.5]
1335
Interaction: 1336/20016 Out of bounds for computation -> 2.63253[0.001,0.5]
1337
Interaction: 1338/20016 Out of bounds for computation -> 1.44535[0.001,0.5]
Interaction: 1339/20016 Out of bounds for computation -> 0.602381[0.001,0.5]
1340
1341
1342
1343
Interaction: 1344/20016 Out of bounds for computation -> 0.572401[0.001,0.5]
Interaction: 1345/20016 Out of bounds for computation -> 0.562214[0.001,0.5]
1346
1347
1348
1349
Interaction: 1350/20016 Out of bounds for computation -> 1.13328[0.001,0.5]
1351
Interaction: 1352/20016 Out of bounds for computation -> 1.77858[0.001,0.5]
Interaction: 1353/20016 Out of bounds for computation -> 0.588733[0.001,0.5]
1354
1355
1356
Interaction: 1357/20016 Out of bounds for computation -> 1.03534[0.001,0.5]
1358
Interaction: 1359/20016 Out of bounds for computation -> 0.72068[0.001,0.5]
1360
Interaction: 1361/20016 Out of bounds for computation -> 2.73103[0.001,0.5]
1362
Interaction: 1363/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 1364/20016 Out of bounds for computation -> nan[0.001,0.5]
1365
Interaction: 1366/20016 Out of bounds for computation -> 0.646639[0.001,0.5]
1367
Interaction: 1368/20016 Out of bounds for computation -> 1.28307[0.001,0.5]
Interaction: 1369/20016 Out of bounds for computation -> 2.01227[0.001,0.5]
Interaction: 1370/20016 Out of bounds for computation -> nan[0.001,0.5]
1371
1372
Interaction: 1373/20016 Out of bounds for computation -> 0.882042[0.001,0.5]
Interaction: 1374/20016 Out of bounds for computation -> 0.718312[0.001,0.5]
Interaction: 1375/20016 Out of bounds for computation -> 1.44864[0.001,0.5]
Interaction: 1376/20016 Out of bounds for computation -> 0.62599[0.001,0.5]
1377
1378
Interaction: 1379/20016 Out of bounds for computation -> 1.47214[0.001,0.5]
Interaction: 1380/20016 Out of bounds for computation -> 0.843591[0.001,0.5]
Interaction: 1381/20016 Out of bounds for computation -> 1.68112[0.001,0.5]
1382
1383
1384
1385
1386
1387
Interaction: 1388/20016 Out of bounds for computation -> 1.16943[0.001,0.5]
1389
1390
1391
1392
Interaction: 1393/20016 Out of bounds for computation -> 1.7185[0.001,0.5]
1394
Interaction: 1395/20016 Out of bounds for computation -> 0.642968[0.001,0.5]
1396
Interaction: 1397/20016 Out of bounds for computation -> 1.40967[0.001,0.5]
1398
1399
1400
1401
Interaction: 1402/20016 Out of bounds for computation -> 1.42455[0.001,0.5]
1403
1404
1405
1406
1407
1408
Interaction: 1409/20016 Out of bounds for computation -> 0.629229[0.001,0.5]
1410
1411
1412
1413
Interaction: 1414/20016 Out of bounds for computation -> 0.549703[0.001,0.5]
1415
1416
Interaction: 1417/20016 Out of bounds for computation -> 0.552074[0.001,0.5]
1418
Interaction: 1419/20016 Out of bounds for computation -> 1.40935[0.001,0.5]
1420
Interaction: 1421/20016 Out of bounds for computation -> 1.44651[0.001,0.5]
1422
1423
1424
1425
Interaction: 1426/20016 Out of bounds for computation -> 0.779901[0.001,0.5]
1427
1428
Interaction: 1429/20016 Out of bounds for computation -> 1.06947[0.001,0.5]
Interaction: 1430/20016 Out of bounds for computation -> 0.815233[0.001,0.5]
1431
Interaction: 1432/20016 Out of bounds for computation -> 0.880729[0.001,0.5]
Interaction: 1433/20016 Out of bounds for computation -> 0.588718[0.001,0.5]
1434
Interaction: 1435/20016 Out of bounds for computation -> 0.566094[0.001,0.5]
Interaction: 1436/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 1437/20016 Out of bounds for computation -> 0.882148[0.001,0.5]
1438
1439
Interaction: 1440/20016 Out of bounds for computation -> 1.84071[0.001,0.5]
1441
Interaction: 1442/20016 Out of bounds for computation -> 0.804921[0.001,0.5]
Interaction: 1443/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 1444/20016 Out of bounds for computation -> 2.11604[0.001,0.5]
Interaction: 1445/20016 Out of bounds for computation -> 2.0671[0.001,0.5]
Interaction: 1446/20016 Out of bounds for computation -> 1.63076[0.001,0.5]
Interaction: 1447/20016 Out of bounds for computation -> nan[0.001,0.5]
1448
Interaction: 1449/20016 Out of bounds for computation -> 2.16596[0.001,0.5]
Interaction: 1450/20016 Out of bounds for computation -> 2.78296[0.001,0.5]
Interaction: 1451/20016 Out of bounds for computation -> 0.846177[0.001,0.5]
1452
Interaction: 1453/20016 Out of bounds for computation -> 0.615876[0.001,0.5]
Interaction: 1454/20016 Out of bounds for computation -> 2.53435[0.001,0.5]
1455
Interaction: 1456/20016 Out of bounds for computation -> nan[0.001,0.5]
1457
Interaction: 1458/20016 Out of bounds for computation -> 2.32024[0.001,0.5]
Interaction: 1459/20016 Out of bounds for computation -> 1.1058[0.001,0.5]
Interaction: 1460/20016 Out of bounds for computation -> 0.810079[0.001,0.5]
1461
1462
1463
1464
Interaction: 1465/20016 Out of bounds for computation -> 1.36234[0.001,0.5]
1466
1467
1468
Interaction: 1469/20016 Out of bounds for computation -> 0.687485[0.001,0.5]
Interaction: 1470/20016 Out of bounds for computation -> 1.61305[0.001,0.5]
Interaction: 1471/20016 Out of bounds for computation -> 1.8722[0.001,0.5]
1472
Interaction: 1473/20016 Out of bounds for computation -> 1.408[0.001,0.5]
1474
1475
1476
Interaction: 1477/20016 Out of bounds for computation -> 0.764511[0.001,0.5]
1478
Interaction: 1479/20016 Out of bounds for computation -> 0.871893[0.001,0.5]
1480
1481
Interaction: 1482/20016 Out of bounds for computation -> 0.520452[0.001,0.5]
1483
1484
Interaction: 1485/20016 Out of bounds for computation -> 1.68529[0.001,0.5]
Interaction: 1486/20016 Out of bounds for computation -> 1.12514[0.001,0.5]
1487
Interaction: 1488/20016 Out of bounds for computation -> 1.57488[0.001,0.5]
1489
1490
Interaction: 1491/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 1492/20016 Out of bounds for computation -> 0.662011[0.001,0.5]
Interaction: 1493/20016 Out of bounds for computation -> 1.7236[0.001,0.5]
1494
Interaction: 1495/20016 Out of bounds for computation -> 2.50214[0.001,0.5]
1496
Interaction: 1497/20016 Out of bounds for computation -> 1.86526[0.001,0.5]
1498
1499
Interaction: 1500/20016 Out of bounds for computation -> 1.37009[0.001,0.5]
Interaction: 1501/20016 Out of bounds for computation -> 2.63226[0.001,0.5]
1502
Interaction: 1503/20016 Out of bounds for computation -> 0.816374[0.001,0.5]
1504
1505
Interaction: 1506/20016 Out of bounds for computation -> 0.758009[0.001,0.5]
1507
1508
Interaction: 1509/20016 Out of bounds for computation -> 0.560478[0.001,0.5]
Interaction: 1510/20016 Out of bounds for computation -> 0.750473[0.001,0.5]
Interaction: 1511/20016 Out of bounds for computation -> 1.48791[0.001,0.5]
Interaction: 1512/20016 Out of bounds for computation -> 2.24554[0.001,0.5]
1513
1514
1515
Interaction: 1516/20016 Out of bounds for computation -> 2.52369[0.001,0.5]
Interaction: 1517/20016 Out of bounds for computation -> 0.806341[0.001,0.5]
1518
Interaction: 1519/20016 Out of bounds for computation -> nan[0.001,0.5]
1520
1521
1522
Interaction: 1523/20016 Out of bounds for computation -> 0.549618[0.001,0.5]
1524
Interaction: 1525/20016 Out of bounds for computation -> 0.620335[0.001,0.5]
1526
Interaction: 1527/20016 Out of bounds for computation -> 1.40229[0.001,0.5]
1528
1529
Interaction: 1530/20016 Out of bounds for computation -> 1.93165[0.001,0.5]
Interaction: 1531/20016 Out of bounds for computation -> 1.45641[0.001,0.5]
1532
1533
Interaction: 1534/20016 Out of bounds for computation -> nan[0.001,0.5]
1535
1536
Interaction: 1537/20016 Out of bounds for computation -> 1.54401[0.001,0.5]
Interaction: 1538/20016 Out of bounds for computation -> 1.33834[0.001,0.5]
1539
1540
1541
1542
Interaction: 1543/20016 Out of bounds for computation -> 1.52552[0.001,0.5]
1544
Interaction: 1545/20016 Out of bounds for computation -> 1.49311[0.001,0.5]
1546
Interaction: 1547/20016 Out of bounds for computation -> 1.14269[0.001,0.5]
Interaction: 1548/20016 Out of bounds for computation -> 1.52663[0.001,0.5]
Interaction: 1549/20016 Out of bounds for computation -> 0.643285[0.001,0.5]
Interaction: 1550/20016 Out of bounds for computation -> 2.43837[0.001,0.5]
Interaction: 1551/20016 Out of bounds for computation -> 1.31099[0.001,0.5]
Interaction: 1552/20016 Out of bounds for computation -> 0.548372[0.001,0.5]
1553
Interaction: 1554/20016 Out of bounds for computation -> 1.4086[0.001,0.5]
Interaction: 1555/20016 Out of bounds for computation -> 0.614484[0.001,0.5]
Interaction: 1556/20016 Out of bounds for computation -> 0.54655[0.001,0.5]
Interaction: 1557/20016 Out of bounds for computation -> 2.44553[0.001,0.5]
1558
Interaction: 1559/20016 Out of bounds for computation -> 2.63744[0.001,0.5]
Interaction: 1560/20016 Out of bounds for computation -> 1.06635[0.001,0.5]
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
Interaction: 1572/20016 Out of bounds for computation -> 0.613593[0.001,0.5]
Interaction: 1573/20016 Out of bounds for computation -> 2.58752[0.001,0.5]
1574
1575
1576
Interaction: 1577/20016 Out of bounds for computation -> 1.38291[0.001,0.5]
Interaction: 1578/20016 Out of bounds for computation -> 2.85059[0.001,0.5]
1579
1580
1581
Interaction: 1582/20016 Out of bounds for computation -> nan[0.001,0.5]
1583
1584
Interaction: 1585/20016 Out of bounds for computation -> 2.41552[0.001,0.5]
1586
Interaction: 1587/20016 Out of bounds for computation -> 1.91707[0.001,0.5]
Interaction: 1588/20016 Out of bounds for computation -> nan[0.001,0.5]
1589
Interaction: 1590/20016 Out of bounds for computation -> 1.24936[0.001,0.5]
1591
1592
1593
1594
1595
1596
Interaction: 1597/20016 Out of bounds for computation -> nan[0.001,0.5]
1598
1599
1600
1601
Interaction: 1602/20016 Out of bounds for computation -> 1.22874[0.001,0.5]
Interaction: 1603/20016 Out of bounds for computation -> 0.607921[0.001,0.5]
1604
Interaction: 1605/20016 Out of bounds for computation -> 1.35332[0.001,0.5]
1606
1607
1608
Interaction: 1609/20016 Out of bounds for computation -> 2.88484[0.001,0.5]
1610
1611
1612
1613
1614
1615
Interaction: 1616/20016 Out of bounds for computation -> 1.95905[0.001,0.5]
Interaction: 1617/20016 Out of bounds for computation -> 2.26046[0.001,0.5]
Interaction: 1618/20016 Out of bounds for computation -> 2.72567[0.001,0.5]
1619
Interaction: 1620/20016 Out of bounds for computation -> 1.79328[0.001,0.5]
1621
Interaction: 1622/20016 Out of bounds for computation -> 1.32121[0.001,0.5]
1623
1624
1625
1626
1627
1628
1629
Interaction: 1630/20016 Out of bounds for computation -> 1.36068[0.001,0.5]
1631
1632
Interaction: 1633/20016 Out of bounds for computation -> 0.678255[0.001,0.5]
1634
Interaction: 1635/20016 Out of bounds for computation -> nan[0.001,0.5]
1636
1637
1638
1639
1640
1641
1642
Interaction: 1643/20016 Out of bounds for computation -> 1.39949[0.001,0.5]
Interaction: 1644/20016 Out of bounds for computation -> 0.503867[0.001,0.5]
Interaction: 1645/20016 Out of bounds for computation -> 1.73145[0.001,0.5]
1646
Interaction: 1647/20016 Out of bounds for computation -> 1.00429[0.001,0.5]
1648
1649
1650
1651
Interaction: 1652/20016 Out of bounds for computation -> 0.614955[0.001,0.5]
1653
1654
1655
1656
Interaction: 1657/20016 Out of bounds for computation -> 1.91403[0.001,0.5]
1658
Interaction: 1659/20016 Out of bounds for computation -> 0.584582[0.001,0.5]
1660
1661
1662
Interaction: 1663/20016 Out of bounds for computation -> 0.557957[0.001,0.5]
Interaction: 1664/20016 Out of bounds for computation -> 2.58074[0.001,0.5]
1665
1666
Interaction: 1667/20016 Out of bounds for computation -> 1.85084[0.001,0.5]
1668
Interaction: 1669/20016 Out of bounds for computation -> 0.698837[0.001,0.5]
Interaction: 1670/20016 Out of bounds for computation -> 1.39797[0.001,0.5]
Interaction: 1671/20016 Out of bounds for computation -> 1.07207[0.001,0.5]
Interaction: 1672/20016 Out of bounds for computation -> 3.08507[0.001,0.5]
Interaction: 1673/20016 Out of bounds for computation -> 1.38517[0.001,0.5]
1674
1675
Interaction: 1676/20016 Out of bounds for computation -> 0.938946[0.001,0.5]
Interaction: 1677/20016 Out of bounds for computation -> 0.718993[0.001,0.5]
1678
Interaction: 1679/20016 Out of bounds for computation -> 0.69407[0.001,0.5]
1680
Interaction: 1681/20016 Out of bounds for computation -> 0.773308[0.001,0.5]
Interaction: 1682/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 1683/20016 Out of bounds for computation -> 1.86548[0.001,0.5]
1684
Interaction: 1685/20016 Out of bounds for computation -> 0.721124[0.001,0.5]
Interaction: 1686/20016 Out of bounds for computation -> 0.63934[0.001,0.5]
1687
1688
1689
1690
1691
1692
Interaction: 1693/20016 Out of bounds for computation -> 1.96427[0.001,0.5]
1694
1695
Interaction: 1696/20016 Out of bounds for computation -> 2.43425[0.001,0.5]
Interaction: 1697/20016 Out of bounds for computation -> 0.570021[0.001,0.5]
1698
1699
Interaction: 1700/20016 Out of bounds for computation -> 1.7199[0.001,0.5]
Interaction: 1701/20016 Out of bounds for computation -> 0.616818[0.001,0.5]
1702
1703
1704
1705
1706
Interaction: 1707/20016 Out of bounds for computation -> 1.45376[0.001,0.5]
1708
Interaction: 1709/20016 Out of bounds for computation -> 2.04649[0.001,0.5]
Interaction: 1710/20016 Out of bounds for computation -> 1.60429[0.001,0.5]
Interaction: 1711/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 1712/20016 Out of bounds for computation -> 1.3932[0.001,0.5]
1713
1714
1715
Interaction: 1716/20016 Out of bounds for computation -> 0.528428[0.001,0.5]
1717
1718
Interaction: 1719/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 1720/20016 Out of bounds for computation -> 0.922184[0.001,0.5]
1721
1722
1723
1724
1725
1726
1727
1728
1729
Interaction: 1730/20016 Out of bounds for computation -> 1.91313[0.001,0.5]
1731
Interaction: 1732/20016 Out of bounds for computation -> 2.31522[0.001,0.5]
1733
Interaction: 1734/20016 Out of bounds for computation -> 0.648585[0.001,0.5]
1735
Interaction: 1736/20016 Out of bounds for computation -> nan[0.001,0.5]
1737
1738
1739
1740
Interaction: 1741/20016 Out of bounds for computation -> 2.67924[0.001,0.5]
1742
1743
Interaction: 1744/20016 Out of bounds for computation -> 0.683781[0.001,0.5]
Interaction: 1745/20016 Out of bounds for computation -> 2.13696[0.001,0.5]
1746
1747
Interaction: 1748/20016 Out of bounds for computation -> 0.552541[0.001,0.5]
Interaction: 1749/20016 Out of bounds for computation -> 0.654939[0.001,0.5]
1750
1751
1752
1753
1754
Interaction: 1755/20016 Out of bounds for computation -> 0.77984[0.001,0.5]
1756
1757
1758
1759
Interaction: 1760/20016 Out of bounds for computation -> 0.801601[0.001,0.5]
1761
1762
Interaction: 1763/20016 Out of bounds for computation -> 2.54503[0.001,0.5]
1764
1765
1766
1767
1768
Interaction: 1769/20016 Out of bounds for computation -> 1.41869[0.001,0.5]
Interaction: 1770/20016 Out of bounds for computation -> 1.41466[0.001,0.5]
Interaction: 1771/20016 Out of bounds for computation -> 1.91174[0.001,0.5]
Interaction: 1772/20016 Out of bounds for computation -> 1.62206[0.001,0.5]
1773
1774
1775
1776
Interaction: 1777/20016 Out of bounds for computation -> 1.89828[0.001,0.5]
1778
1779
1780
Interaction: 1781/20016 Out of bounds for computation -> 2.07122[0.001,0.5]
Interaction: 1782/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 1783/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 1784/20016 Out of bounds for computation -> 0.882383[0.001,0.5]
Interaction: 1785/20016 Out of bounds for computation -> 1.11342[0.001,0.5]
Interaction: 1786/20016 Out of bounds for computation -> 1.5809[0.001,0.5]
1787
Interaction: 1788/20016 Out of bounds for computation -> 1.69439[0.001,0.5]
1789
Interaction: 1790/20016 Out of bounds for computation -> 1.12937[0.001,0.5]
Interaction: 1791/20016 Out of bounds for computation -> 0.876941[0.001,0.5]
1792
Interaction: 1793/20016 Out of bounds for computation -> 1.43401[0.001,0.5]
1794
Interaction: 1795/20016 Out of bounds for computation -> 1.89499[0.001,0.5]
Interaction: 1796/20016 Out of bounds for computation -> 0.512425[0.001,0.5]
Interaction: 1797/20016 Out of bounds for computation -> 0.516404[0.001,0.5]
Interaction: 1798/20016 Out of bounds for computation -> 1.03767[0.001,0.5]
1799
1800
Interaction: 1801/20016 Out of bounds for computation -> nan[0.001,0.5]
1802
Interaction: 1803/20016 Out of bounds for computation -> 0.632039[0.001,0.5]
Interaction: 1804/20016 Out of bounds for computation -> 1.34268[0.001,0.5]
1805
1806
1807
Interaction: 1808/20016 Out of bounds for computation -> 0.719258[0.001,0.5]
Interaction: 1809/20016 Out of bounds for computation -> 0.575543[0.001,0.5]
Interaction: 1810/20016 Out of bounds for computation -> 0.847818[0.001,0.5]
1811
Interaction: 1812/20016 Out of bounds for computation -> 0.884375[0.001,0.5]
1813
Interaction: 1814/20016 Out of bounds for computation -> 0.682674[0.001,0.5]
1815
1816
Interaction: 1817/20016 Out of bounds for computation -> 2.51389[0.001,0.5]
Interaction: 1818/20016 Out of bounds for computation -> 1.38398[0.001,0.5]
Interaction: 1819/20016 Out of bounds for computation -> 0.565557[0.001,0.5]
1820
Interaction: 1821/20016 Out of bounds for computation -> 1.87745[0.001,0.5]
1822
1823
1824
Interaction: 1825/20016 Out of bounds for computation -> 1.88918[0.001,0.5]
1826
Interaction: 1827/20016 Out of bounds for computation -> 1.38728[0.001,0.5]
1828
1829
1830
1831
Interaction: 1832/20016 Out of bounds for computation -> 0.705657[0.001,0.5]
Interaction: 1833/20016 Out of bounds for computation -> 1.71781[0.001,0.5]
1834
Interaction: 1835/20016 Out of bounds for computation -> 2.17054[0.001,0.5]
Interaction: 1836/20016 Out of bounds for computation -> 1.8465[0.001,0.5]
1837
1838
1839
Interaction: 1840/20016 Out of bounds for computation -> 0.741243[0.001,0.5]
1841
1842
1843
Interaction: 1844/20016 Out of bounds for computation -> 0.943857[0.001,0.5]
1845
1846
1847
1848
Interaction: 1849/20016 Out of bounds for computation -> 0.680914[0.001,0.5]
1850
1851
Interaction: 1852/20016 Out of bounds for computation -> 0.530284[0.001,0.5]
1853
Interaction: 1854/20016 Out of bounds for computation -> 2.19823[0.001,0.5]
Interaction: 1855/20016 Out of bounds for computation -> 1.51251[0.001,0.5]
1856
1857
Interaction: 1858/20016 Out of bounds for computation -> 1.63965[0.001,0.5]
Interaction: 1859/20016 Out of bounds for computation -> 0.747702[0.001,0.5]
Interaction: 1860/20016 Out of bounds for computation -> 0.584536[0.001,0.5]
1861
Interaction: 1862/20016 Out of bounds for computation -> 0.649142[0.001,0.5]
Interaction: 1863/20016 Out of bounds for computation -> 1.49149[0.001,0.5]
Interaction: 1864/20016 Out of bounds for computation -> 1.08423[0.001,0.5]
Interaction: 1865/20016 Out of bounds for computation -> 0.541179[0.001,0.5]
Interaction: 1866/20016 Out of bounds for computation -> 1.15431[0.001,0.5]
Interaction: 1867/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 1868/20016 Out of bounds for computation -> 1.12414[0.001,0.5]
Interaction: 1869/20016 Out of bounds for computation -> 2.65964[0.001,0.5]
Interaction: 1870/20016 Out of bounds for computation -> 1.79866[0.001,0.5]
1871
Interaction: 1872/20016 Out of bounds for computation -> 0.542091[0.001,0.5]
1873
Interaction: 1874/20016 Out of bounds for computation -> 0.77442[0.001,0.5]
1875
1876
1877
1878
Interaction: 1879/20016 Out of bounds for computation -> nan[0.001,0.5]
1880
1881
Interaction: 1882/20016 Out of bounds for computation -> 0.771938[0.001,0.5]
1883
Interaction: 1884/20016 Out of bounds for computation -> 0.598814[0.001,0.5]
Interaction: 1885/20016 Out of bounds for computation -> 0.946383[0.001,0.5]
1886
Interaction: 1887/20016 Out of bounds for computation -> 0.571478[0.001,0.5]
Interaction: 1888/20016 Out of bounds for computation -> 2.62449[0.001,0.5]
Interaction: 1889/20016 Out of bounds for computation -> 1.51355[0.001,0.5]
1890
1891
1892
1893
1894
1895
Interaction: 1896/20016 Out of bounds for computation -> 1.33371[0.001,0.5]
Interaction: 1897/20016 Out of bounds for computation -> 0.680466[0.001,0.5]
1898
1899
1900
1901
Interaction: 1902/20016 Out of bounds for computation -> 0.546185[0.001,0.5]
1903
Interaction: 1904/20016 Out of bounds for computation -> 1.82333[0.001,0.5]
Interaction: 1905/20016 Out of bounds for computation -> 0.544321[0.001,0.5]
1906
Interaction: 1907/20016 Out of bounds for computation -> 0.577832[0.001,0.5]
Interaction: 1908/20016 Out of bounds for computation -> 0.767497[0.001,0.5]
Interaction: 1909/20016 Out of bounds for computation -> 1.45235[0.001,0.5]
1910
1911
Interaction: 1912/20016 Out of bounds for computation -> 0.797744[0.001,0.5]
1913
1914
Interaction: 1915/20016 Out of bounds for computation -> 1.43659[0.001,0.5]
Interaction: 1916/20016 Out of bounds for computation -> 0.630143[0.001,0.5]
1917
Interaction: 1918/20016 Out of bounds for computation -> 0.838818[0.001,0.5]
1919
1920
1921
1922
1923
1924
1925
1926
1927
Interaction: 1928/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 1929/20016 Out of bounds for computation -> 0.730876[0.001,0.5]
1930
1931
1932
Interaction: 1933/20016 Out of bounds for computation -> 0.537566[0.001,0.5]
1934
Interaction: 1935/20016 Out of bounds for computation -> 0.594102[0.001,0.5]
Interaction: 1936/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 1937/20016 Out of bounds for computation -> 0.505753[0.001,0.5]
Interaction: 1938/20016 Out of bounds for computation -> 2.25065[0.001,0.5]
Interaction: 1939/20016 Out of bounds for computation -> 0.87472[0.001,0.5]
Interaction: 1940/20016 Out of bounds for computation -> nan[0.001,0.5]
1941
1942
1943
Interaction: 1944/20016 Out of bounds for computation -> 0.950856[0.001,0.5]
Interaction: 1945/20016 Out of bounds for computation -> 0.655843[0.001,0.5]
Interaction: 1946/20016 Out of bounds for computation -> nan[0.001,0.5]
1947
Interaction: 1948/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 1949/20016 Out of bounds for computation -> nan[0.001,0.5]
1950
Interaction: 1951/20016 Out of bounds for computation -> 2.4894[0.001,0.5]
Interaction: 1952/20016 Out of bounds for computation -> 1.52268[0.001,0.5]
1953
1954
Interaction: 1955/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 1956/20016 Out of bounds for computation -> 1.10884[0.001,0.5]
1957
Interaction: 1958/20016 Out of bounds for computation -> 0.783892[0.001,0.5]
1959
1960
Interaction: 1961/20016 Out of bounds for computation -> 0.526376[0.001,0.5]
1962
1963
1964
Interaction: 1965/20016 Out of bounds for computation -> 1.19334[0.001,0.5]
1966
Interaction: 1967/20016 Out of bounds for computation -> 1.36933[0.001,0.5]
1968
1969
1970
1971
1972
1973
Interaction: 1974/20016 Out of bounds for computation -> 1.46062[0.001,0.5]
Interaction: 1975/20016 Out of bounds for computation -> 0.699309[0.001,0.5]
1976
Interaction: 1977/20016 Out of bounds for computation -> 2.12665[0.001,0.5]
1978
Interaction: 1979/20016 Out of bounds for computation -> 1.35076[0.001,0.5]
Interaction: 1980/20016 Out of bounds for computation -> 0.596486[0.001,0.5]
Interaction: 1981/20016 Out of bounds for computation -> nan[0.001,0.5]
1982
Interaction: 1983/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 1984/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 1985/20016 Out of bounds for computation -> 1.28935[0.001,0.5]
1986
1987
1988
Interaction: 1989/20016 Out of bounds for computation -> 1.38627[0.001,0.5]
Interaction: 1990/20016 Out of bounds for computation -> 1.36619[0.001,0.5]
1991
1992
Interaction: 1993/20016 Out of bounds for computation -> 0.8273[0.001,0.5]
1994
Interaction: 1995/20016 Out of bounds for computation -> 1.32645[0.001,0.5]
1996
Interaction: 1997/20016 Out of bounds for computation -> 1.85594[0.001,0.5]
1998
1999
Interaction: 2000/20016 Out of bounds for computation -> 0.518786[0.001,0.5]
2001
2002
Interaction: 2003/20016 Out of bounds for computation -> 1.45422[0.001,0.5]
2004
2005
2006
2007
2008
Interaction: 2009/20016 Out of bounds for computation -> 0.539833[0.001,0.5]
2010
Interaction: 2011/20016 Out of bounds for computation -> 0.689088[0.001,0.5]
2012
2013
Interaction: 2014/20016 Out of bounds for computation -> 2.26933[0.001,0.5]
2015
Interaction: 2016/20016 Out of bounds for computation -> nan[0.001,0.5]
2017
Interaction: 2018/20016 Out of bounds for computation -> 2.95002[0.001,0.5]
2019
Interaction: 2020/20016 Out of bounds for computation -> 2.00689[0.001,0.5]
Interaction: 2021/20016 Out of bounds for computation -> 0.50337[0.001,0.5]
2022
Interaction: 2023/20016 Out of bounds for computation -> 1.97111[0.001,0.5]
Interaction: 2024/20016 Out of bounds for computation -> 0.525578[0.001,0.5]
2025
2026
2027
Interaction: 2028/20016 Out of bounds for computation -> 0.530911[0.001,0.5]
2029
2030
2031
Interaction: 2032/20016 Out of bounds for computation -> 0.770803[0.001,0.5]
Interaction: 2033/20016 Out of bounds for computation -> 1.42409[0.001,0.5]
Interaction: 2034/20016 Out of bounds for computation -> 0.728496[0.001,0.5]
Interaction: 2035/20016 Out of bounds for computation -> 0.548744[0.001,0.5]
2036
Interaction: 2037/20016 Out of bounds for computation -> 0.639821[0.001,0.5]
2038
2039
Interaction: 2040/20016 Out of bounds for computation -> 2.45105[0.001,0.5]
Interaction: 2041/20016 Out of bounds for computation -> nan[0.001,0.5]
2042
2043
2044
Interaction: 2045/20016 Out of bounds for computation -> 0.60175[0.001,0.5]
2046
Interaction: 2047/20016 Out of bounds for computation -> 1.37824[0.001,0.5]
Interaction: 2048/20016 Out of bounds for computation -> 0.983749[0.001,0.5]
2049
2050
2051
Interaction: 2052/20016 Out of bounds for computation -> 1.28987[0.001,0.5]
Interaction: 2053/20016 Out of bounds for computation -> 0.775434[0.001,0.5]
Interaction: 2054/20016 Out of bounds for computation -> 0.59551[0.001,0.5]
2055
2056
Interaction: 2057/20016 Out of bounds for computation -> 0.599265[0.001,0.5]
Interaction: 2058/20016 Out of bounds for computation -> 1.8908[0.001,0.5]
Interaction: 2059/20016 Out of bounds for computation -> 1.1577[0.001,0.5]
2060
Interaction: 2061/20016 Out of bounds for computation -> 0.571275[0.001,0.5]
Interaction: 2062/20016 Out of bounds for computation -> 2.59079[0.001,0.5]
Interaction: 2063/20016 Out of bounds for computation -> 1.57977[0.001,0.5]
2064
Interaction: 2065/20016 Out of bounds for computation -> 0.582737[0.001,0.5]
2066
2067
2068
Interaction: 2069/20016 Out of bounds for computation -> 0.521501[0.001,0.5]
2070
Interaction: 2071/20016 Out of bounds for computation -> 2.10962[0.001,0.5]
2072
2073
Interaction: 2074/20016 Out of bounds for computation -> 0.551106[0.001,0.5]
2075
Interaction: 2076/20016 Out of bounds for computation -> 1.87941[0.001,0.5]
2077
Interaction: 2078/20016 Out of bounds for computation -> 0.813425[0.001,0.5]
2079
Interaction: 2080/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 2081/20016 Out of bounds for computation -> nan[0.001,0.5]
2082
Interaction: 2083/20016 Out of bounds for computation -> 1.40649[0.001,0.5]
Interaction: 2084/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 2085/20016 Out of bounds for computation -> 0.615892[0.001,0.5]
2086
Interaction: 2087/20016 Out of bounds for computation -> 0.501104[0.001,0.5]
Interaction: 2088/20016 Out of bounds for computation -> 2.45487[0.001,0.5]
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
Interaction: 2099/20016 Out of bounds for computation -> 2.31296[0.001,0.5]
2100
Interaction: 2101/20016 Out of bounds for computation -> 2.26742[0.001,0.5]
Interaction: 2102/20016 Out of bounds for computation -> 1.73273[0.001,0.5]
2103
2104
Interaction: 2105/20016 Out of bounds for computation -> 1.92566[0.001,0.5]
Interaction: 2106/20016 Out of bounds for computation -> 0.675522[0.001,0.5]
Interaction: 2107/20016 Out of bounds for computation -> 0.537701[0.001,0.5]
Interaction: 2108/20016 Out of bounds for computation -> 0.566167[0.001,0.5]
Interaction: 2109/20016 Out of bounds for computation -> 1.89788[0.001,0.5]
Interaction: 2110/20016 Out of bounds for computation -> 0.558421[0.001,0.5]
2111
Interaction: 2112/20016 Out of bounds for computation -> 2.04313[0.001,0.5]
Interaction: 2113/20016 Out of bounds for computation -> 1.74437[0.001,0.5]
2114
2115
2116
2117
2118
Interaction: 2119/20016 Out of bounds for computation -> 2.7649[0.001,0.5]
2120
Interaction: 2121/20016 Out of bounds for computation -> 0.754668[0.001,0.5]
2122
2123
2124
2125
2126
Interaction: 2127/20016 Out of bounds for computation -> 0.765254[0.001,0.5]
2128
2129
2130
Interaction: 2131/20016 Out of bounds for computation -> 1.17871[0.001,0.5]
2132
2133
2134
2135
Interaction: 2136/20016 Out of bounds for computation -> 0.524947[0.001,0.5]
2137
Interaction: 2138/20016 Out of bounds for computation -> 1.69893[0.001,0.5]
Interaction: 2139/20016 Out of bounds for computation -> 1.3328[0.001,0.5]
Interaction: 2140/20016 Out of bounds for computation -> 1.60037[0.001,0.5]
2141
2142
2143
Interaction: 2144/20016 Out of bounds for computation -> 0.609035[0.001,0.5]
2145
2146
2147
Interaction: 2148/20016 Out of bounds for computation -> 1.84795[0.001,0.5]
Interaction: 2149/20016 Out of bounds for computation -> 0.790525[0.001,0.5]
Interaction: 2150/20016 Out of bounds for computation -> 0.625884[0.001,0.5]
Interaction: 2151/20016 Out of bounds for computation -> 0.61501[0.001,0.5]
Interaction: 2152/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 2153/20016 Out of bounds for computation -> 0.520759[0.001,0.5]
2154
2155
Interaction: 2156/20016 Out of bounds for computation -> 0.828045[0.001,0.5]
Interaction: 2157/20016 Out of bounds for computation -> 1.3351[0.001,0.5]
2158
2159
2160
Interaction: 2161/20016 Out of bounds for computation -> 0.750143[0.001,0.5]
Interaction: 2162/20016 Out of bounds for computation -> 0.55907[0.001,0.5]
2163
2164
2165
Interaction: 2166/20016 Out of bounds for computation -> 0.502541[0.001,0.5]
2167
Interaction: 2168/20016 Out of bounds for computation -> 0.586401[0.001,0.5]
2169
2170
2171
Interaction: 2172/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 2173/20016 Out of bounds for computation -> 0.681426[0.001,0.5]
2174
Interaction: 2175/20016 Out of bounds for computation -> 0.783997[0.001,0.5]
2176
Interaction: 2177/20016 Out of bounds for computation -> 0.710332[0.001,0.5]
2178
2179
Interaction: 2180/20016 Out of bounds for computation -> nan[0.001,0.5]
2181
Interaction: 2182/20016 Out of bounds for computation -> 0.791464[0.001,0.5]
Interaction: 2183/20016 Out of bounds for computation -> 1.79777[0.001,0.5]
2184
Interaction: 2185/20016 Out of bounds for computation -> 1.88455[0.001,0.5]
2186
2187
Interaction: 2188/20016 Out of bounds for computation -> 0.555087[0.001,0.5]
Interaction: 2189/20016 Out of bounds for computation -> 2.60289[0.001,0.5]
2190
2191
2192
2193
Interaction: 2194/20016 Out of bounds for computation -> 1.43406[0.001,0.5]
Interaction: 2195/20016 Out of bounds for computation -> 0.517612[0.001,0.5]
2196
2197
2198
2199
2200
Interaction: 2201/20016 Out of bounds for computation -> 2.73126[0.001,0.5]
Interaction: 2202/20016 Out of bounds for computation -> 0.709633[0.001,0.5]
Interaction: 2203/20016 Out of bounds for computation -> 0.634844[0.001,0.5]
Interaction: 2204/20016 Out of bounds for computation -> nan[0.001,0.5]
2205
Interaction: 2206/20016 Out of bounds for computation -> 1.895[0.001,0.5]
2207
Interaction: 2208/20016 Out of bounds for computation -> 1.40483[0.001,0.5]
2209
Interaction: 2210/20016 Out of bounds for computation -> 1.47581[0.001,0.5]
Interaction: 2211/20016 Out of bounds for computation -> 2.28776[0.001,0.5]
2212
2213
Interaction: 2214/20016 Out of bounds for computation -> 1.69596[0.001,0.5]
2215
Interaction: 2216/20016 Out of bounds for computation -> 1.62009[0.001,0.5]
Interaction: 2217/20016 Out of bounds for computation -> 0.616076[0.001,0.5]
Interaction: 2218/20016 Out of bounds for computation -> 2.11353[0.001,0.5]
Interaction: 2219/20016 Out of bounds for computation -> 1.49988[0.001,0.5]
2220
Interaction: 2221/20016 Out of bounds for computation -> 1.30821[0.001,0.5]
2222
Interaction: 2223/20016 Out of bounds for computation -> 0.564325[0.001,0.5]
2224
2225
Interaction: 2226/20016 Out of bounds for computation -> 1.40126[0.001,0.5]
2227
2228
Interaction: 2229/20016 Out of bounds for computation -> 0.629432[0.001,0.5]
Interaction: 2230/20016 Out of bounds for computation -> 2.07268[0.001,0.5]
2231
2232
2233
Interaction: 2234/20016 Out of bounds for computation -> 2.3144[0.001,0.5]
2235
2236
Interaction: 2237/20016 Out of bounds for computation -> 0.529134[0.001,0.5]
Interaction: 2238/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 2239/20016 Out of bounds for computation -> 2.26193[0.001,0.5]
Interaction: 2240/20016 Out of bounds for computation -> 1.59248[0.001,0.5]
Interaction: 2241/20016 Out of bounds for computation -> 1.38754[0.001,0.5]
Interaction: 2242/20016 Out of bounds for computation -> 1.92282[0.001,0.5]
2243
Interaction: 2244/20016 Out of bounds for computation -> 1.0643[0.001,0.5]
Interaction: 2245/20016 Out of bounds for computation -> 1.29088[0.001,0.5]
2246
2247
2248
Interaction: 2249/20016 Out of bounds for computation -> 0.571587[0.001,0.5]
2250
2251
Interaction: 2252/20016 Out of bounds for computation -> 0.914886[0.001,0.5]
2253
Interaction: 2254/20016 Out of bounds for computation -> 0.766166[0.001,0.5]
2255
2256
2257
Interaction: 2258/20016 Out of bounds for computation -> 0.827276[0.001,0.5]
2259
2260
Interaction: 2261/20016 Out of bounds for computation -> 2.76864[0.001,0.5]
2262
Interaction: 2263/20016 Out of bounds for computation -> 0.544614[0.001,0.5]
Interaction: 2264/20016 Out of bounds for computation -> 0.675248[0.001,0.5]
2265
2266
Interaction: 2267/20016 Out of bounds for computation -> 1.02334[0.001,0.5]
2268
Interaction: 2269/20016 Out of bounds for computation -> 2.22427[0.001,0.5]
Interaction: 2270/20016 Out of bounds for computation -> 0.533638[0.001,0.5]
Interaction: 2271/20016 Out of bounds for computation -> 0.661369[0.001,0.5]
2272
2273
Interaction: 2274/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 2275/20016 Out of bounds for computation -> 1.63092[0.001,0.5]
Interaction: 2276/20016 Out of bounds for computation -> 2.11944[0.001,0.5]
2277
2278
Interaction: 2279/20016 Out of bounds for computation -> nan[0.001,0.5]
2280
2281
Interaction: 2282/20016 Out of bounds for computation -> 0.814338[0.001,0.5]
Interaction: 2283/20016 Out of bounds for computation -> 0.623575[0.001,0.5]
2284
2285
2286
Interaction: 2287/20016 Out of bounds for computation -> 0.842457[0.001,0.5]
2288
Interaction: 2289/20016 Out of bounds for computation -> 3.03753[0.001,0.5]
Interaction: 2290/20016 Out of bounds for computation -> 1.41418[0.001,0.5]
2291
Interaction: 2292/20016 Out of bounds for computation -> 2.13837[0.001,0.5]
2293
Interaction: 2294/20016 Out of bounds for computation -> 2.07434[0.001,0.5]
Interaction: 2295/20016 Out of bounds for computation -> 0.798257[0.001,0.5]
2296
Interaction: 2297/20016 Out of bounds for computation -> 0.840158[0.001,0.5]
Interaction: 2298/20016 Out of bounds for computation -> 0.590016[0.001,0.5]
Interaction: 2299/20016 Out of bounds for computation -> 0.697194[0.001,0.5]
Interaction: 2300/20016 Out of bounds for computation -> 2.56334[0.001,0.5]
2301
Interaction: 2302/20016 Out of bounds for computation -> 1.18271[0.001,0.5]
Interaction: 2303/20016 Out of bounds for computation -> 2.87769[0.001,0.5]
Interaction: 2304/20016 Out of bounds for computation -> 0.660028[0.001,0.5]
Interaction: 2305/20016 Out of bounds for computation -> 2.22463[0.001,0.5]
2306
Interaction: 2307/20016 Out of bounds for computation -> 1.4334[0.001,0.5]
Interaction: 2308/20016 Out of bounds for computation -> 0.655887[0.001,0.5]
Interaction: 2309/20016 Out of bounds for computation -> 1.40375[0.001,0.5]
Interaction: 2310/20016 Out of bounds for computation -> 2.49448[0.001,0.5]
2311
Interaction: 2312/20016 Out of bounds for computation -> 0.63872[0.001,0.5]
Interaction: 2313/20016 Out of bounds for computation -> nan[0.001,0.5]
2314
2315
Interaction: 2316/20016 Out of bounds for computation -> 0.600772[0.001,0.5]
2317
Interaction: 2318/20016 Out of bounds for computation -> 0.561206[0.001,0.5]
2319
Interaction: 2320/20016 Out of bounds for computation -> 2.85433[0.001,0.5]
Interaction: 2321/20016 Out of bounds for computation -> 0.623101[0.001,0.5]
Interaction: 2322/20016 Out of bounds for computation -> 2.29412[0.001,0.5]
2323
Interaction: 2324/20016 Out of bounds for computation -> 0.952046[0.001,0.5]
2325
Interaction: 2326/20016 Out of bounds for computation -> 1.46675[0.001,0.5]
2327
2328
2329
Interaction: 2330/20016 Out of bounds for computation -> nan[0.001,0.5]
2331
Interaction: 2332/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 2333/20016 Out of bounds for computation -> 0.609153[0.001,0.5]
Interaction: 2334/20016 Out of bounds for computation -> 2.13051[0.001,0.5]
2335
Interaction: 2336/20016 Out of bounds for computation -> nan[0.001,0.5]
2337
2338
2339
2340
2341
Interaction: 2342/20016 Out of bounds for computation -> 1.59175[0.001,0.5]
2343
Interaction: 2344/20016 Out of bounds for computation -> 2.21852[0.001,0.5]
2345
Interaction: 2346/20016 Out of bounds for computation -> 0.968841[0.001,0.5]
2347
2348
Interaction: 2349/20016 Out of bounds for computation -> nan[0.001,0.5]
2350
Interaction: 2351/20016 Out of bounds for computation -> 0.539649[0.001,0.5]
2352
2353
Interaction: 2354/20016 Out of bounds for computation -> 1.70315[0.001,0.5]
2355
2356
Interaction: 2357/20016 Out of bounds for computation -> 1.53901[0.001,0.5]
2358
Interaction: 2359/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 2360/20016 Out of bounds for computation -> 0.520351[0.001,0.5]
Interaction: 2361/20016 Out of bounds for computation -> 1.41938[0.001,0.5]
2362
2363
2364
Interaction: 2365/20016 Out of bounds for computation -> 0.708701[0.001,0.5]
2366
2367
2368
2369
Interaction: 2370/20016 Out of bounds for computation -> 0.564597[0.001,0.5]
2371
2372
Interaction: 2373/20016 Out of bounds for computation -> 0.846395[0.001,0.5]
2374
2375
2376
Interaction: 2377/20016 Out of bounds for computation -> 0.794048[0.001,0.5]
2378
Interaction: 2379/20016 Out of bounds for computation -> 2.17341[0.001,0.5]
2380
2381
2382
2383
2384
2385
Interaction: 2386/20016 Out of bounds for computation -> 0.515297[0.001,0.5]
2387
2388
2389
Interaction: 2390/20016 Out of bounds for computation -> 0.519501[0.001,0.5]
2391
2392
Interaction: 2393/20016 Out of bounds for computation -> 0.570277[0.001,0.5]
2394
Interaction: 2395/20016 Out of bounds for computation -> nan[0.001,0.5]
2396
Interaction: 2397/20016 Out of bounds for computation -> 2.15978[0.001,0.5]
2398
2399
Interaction: 2400/20016 Out of bounds for computation -> 0.912281[0.001,0.5]
2401
Interaction: 2402/20016 Out of bounds for computation -> 0.896533[0.001,0.5]
Interaction: 2403/20016 Out of bounds for computation -> 1.48422[0.001,0.5]
2404
Interaction: 2405/20016 Out of bounds for computation -> 0.587954[0.001,0.5]
Interaction: 2406/20016 Out of bounds for computation -> 0.847032[0.001,0.5]
Interaction: 2407/20016 Out of bounds for computation -> 0.767178[0.001,0.5]
2408
2409
2410
2411
2412
Interaction: 2413/20016 Out of bounds for computation -> 0.687148[0.001,0.5]
Interaction: 2414/20016 Out of bounds for computation -> 0.537525[0.001,0.5]
2415
Interaction: 2416/20016 Out of bounds for computation -> 1.89809[0.001,0.5]
2417
2418
Interaction: 2419/20016 Out of bounds for computation -> 1.95969[0.001,0.5]
Interaction: 2420/20016 Out of bounds for computation -> 1.58726[0.001,0.5]
2421
Interaction: 2422/20016 Out of bounds for computation -> 1.17093[0.001,0.5]
Interaction: 2423/20016 Out of bounds for computation -> 0.921149[0.001,0.5]
Interaction: 2424/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 2425/20016 Out of bounds for computation -> 1.45909[0.001,0.5]
2426
2427
Interaction: 2428/20016 Out of bounds for computation -> 0.880359[0.001,0.5]
2429
2430
2431
2432
2433
Interaction: 2434/20016 Out of bounds for computation -> 1.37121[0.001,0.5]
Interaction: 2435/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 2436/20016 Out of bounds for computation -> 0.680152[0.001,0.5]
Interaction: 2437/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 2438/20016 Out of bounds for computation -> 0.706925[0.001,0.5]
Interaction: 2439/20016 Out of bounds for computation -> 1.50995[0.001,0.5]
2440
2441
2442
2443
2444
2445
2446
Interaction: 2447/20016 Out of bounds for computation -> 1.63574[0.001,0.5]
Interaction: 2448/20016 Out of bounds for computation -> 1.01821[0.001,0.5]
Interaction: 2449/20016 Out of bounds for computation -> 0.66086[0.001,0.5]
Interaction: 2450/20016 Out of bounds for computation -> 0.739086[0.001,0.5]
Interaction: 2451/20016 Out of bounds for computation -> 0.711388[0.001,0.5]
2452
2453
Interaction: 2454/20016 Out of bounds for computation -> 0.984477[0.001,0.5]
Interaction: 2455/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 2456/20016 Out of bounds for computation -> 2.12173[0.001,0.5]
2457
2458
2459
Interaction: 2460/20016 Out of bounds for computation -> 2.98126[0.001,0.5]
2461
2462
2463
Interaction: 2464/20016 Out of bounds for computation -> 1.49994[0.001,0.5]
2465
Interaction: 2466/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 2467/20016 Out of bounds for computation -> 2.75998[0.001,0.5]
Interaction: 2468/20016 Out of bounds for computation -> 0.828978[0.001,0.5]
Interaction: 2469/20016 Out of bounds for computation -> 0.856142[0.001,0.5]
Interaction: 2470/20016 Out of bounds for computation -> 1.57218[0.001,0.5]
2471
2472
2473
Interaction: 2474/20016 Out of bounds for computation -> 1.7186[0.001,0.5]
2475
2476
2477
2478
Interaction: 2479/20016 Out of bounds for computation -> 0.877487[0.001,0.5]
2480
2481
2482
Interaction: 2483/20016 Out of bounds for computation -> 1.43141[0.001,0.5]
Interaction: 2484/20016 Out of bounds for computation -> 2.47796[0.001,0.5]
Interaction: 2485/20016 Out of bounds for computation -> 2.73465[0.001,0.5]
Interaction: 2486/20016 Out of bounds for computation -> 0.67052[0.001,0.5]
Interaction: 2487/20016 Out of bounds for computation -> 0.70373[0.001,0.5]
Interaction: 2488/20016 Out of bounds for computation -> 1.74627[0.001,0.5]
Interaction: 2489/20016 Out of bounds for computation -> 0.671233[0.001,0.5]
Interaction: 2490/20016 Out of bounds for computation -> 1.45325[0.001,0.5]
2491
Interaction: 2492/20016 Out of bounds for computation -> 1.18675[0.001,0.5]
2493
2494
Interaction: 2495/20016 Out of bounds for computation -> 2.0019[0.001,0.5]
2496
Interaction: 2497/20016 Out of bounds for computation -> 1.40888[0.001,0.5]
2498
2499
Interaction: 2500/20016 Out of bounds for computation -> 0.508311[0.001,0.5]
2501
2502
2503
2504
Interaction: 2505/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 2506/20016 Out of bounds for computation -> 1.28047[0.001,0.5]
2507
2508
2509
2510
2511
2512
Interaction: 2513/20016 Out of bounds for computation -> 0.723384[0.001,0.5]
2514
Interaction: 2515/20016 Out of bounds for computation -> 1.64198[0.001,0.5]
2516
2517
2518
2519
Interaction: 2520/20016 Out of bounds for computation -> 1.12317[0.001,0.5]
2521
2522
2523
2524
2525
Interaction: 2526/20016 Out of bounds for computation -> 2.35929[0.001,0.5]
2527
2528
Interaction: 2529/20016 Out of bounds for computation -> 2.17841[0.001,0.5]
2530
Interaction: 2531/20016 Out of bounds for computation -> 1.35247[0.001,0.5]
2532
2533
Interaction: 2534/20016 Out of bounds for computation -> 0.715027[0.001,0.5]
Interaction: 2535/20016 Out of bounds for computation -> 1.39334[0.001,0.5]
Interaction: 2536/20016 Out of bounds for computation -> 0.601406[0.001,0.5]
2537
Interaction: 2538/20016 Out of bounds for computation -> 1.16217[0.001,0.5]
2539
Interaction: 2540/20016 Out of bounds for computation -> 0.693198[0.001,0.5]
2541
2542
2543
Interaction: 2544/20016 Out of bounds for computation -> 1.40851[0.001,0.5]
Interaction: 2545/20016 Out of bounds for computation -> 2.41355[0.001,0.5]
Interaction: 2546/20016 Out of bounds for computation -> 1.60227[0.001,0.5]
2547
2548
Interaction: 2549/20016 Out of bounds for computation -> 0.808084[0.001,0.5]
2550
Interaction: 2551/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 2552/20016 Out of bounds for computation -> 0.591096[0.001,0.5]
Interaction: 2553/20016 Out of bounds for computation -> nan[0.001,0.5]
2554
2555
Interaction: 2556/20016 Out of bounds for computation -> nan[0.001,0.5]
2557
Interaction: 2558/20016 Out of bounds for computation -> 0.935371[0.001,0.5]
2559
Interaction: 2560/20016 Out of bounds for computation -> 0.802375[0.001,0.5]
Interaction: 2561/20016 Out of bounds for computation -> 1.99671[0.001,0.5]
Interaction: 2562/20016 Out of bounds for computation -> 1.43217[0.001,0.5]
Interaction: 2563/20016 Out of bounds for computation -> 0.777155[0.001,0.5]
2564
2565
2566
2567
2568
2569
2570
Interaction: 2571/20016 Out of bounds for computation -> 1.55408[0.001,0.5]
Interaction: 2572/20016 Out of bounds for computation -> 2.08093[0.001,0.5]
2573
Interaction: 2574/20016 Out of bounds for computation -> 2.38515[0.001,0.5]
2575
Interaction: 2576/20016 Out of bounds for computation -> 1.36772[0.001,0.5]
2577
2578
Interaction: 2579/20016 Out of bounds for computation -> 1.53942[0.001,0.5]
Interaction: 2580/20016 Out of bounds for computation -> 0.725709[0.001,0.5]
2581
2582
2583
2584
2585
Interaction: 2586/20016 Out of bounds for computation -> 0.531325[0.001,0.5]
2587
2588
2589
2590
2591
2592
Interaction: 2593/20016 Out of bounds for computation -> 1.20804[0.001,0.5]
Interaction: 2594/20016 Out of bounds for computation -> 0.565604[0.001,0.5]
Interaction: 2595/20016 Out of bounds for computation -> 1.19131[0.001,0.5]
2596
Interaction: 2597/20016 Out of bounds for computation -> 0.543747[0.001,0.5]
2598
2599
Interaction: 2600/20016 Out of bounds for computation -> 0.742575[0.001,0.5]
Interaction: 2601/20016 Out of bounds for computation -> 0.787877[0.001,0.5]
Interaction: 2602/20016 Out of bounds for computation -> 0.784008[0.001,0.5]
2603
Interaction: 2604/20016 Out of bounds for computation -> 1.11931[0.001,0.5]
Interaction: 2605/20016 Out of bounds for computation -> 2.26254[0.001,0.5]
2606
2607
2608
Interaction: 2609/20016 Out of bounds for computation -> 0.955727[0.001,0.5]
2610
2611
Interaction: 2612/20016 Out of bounds for computation -> 0.51131[0.001,0.5]
Interaction: 2613/20016 Out of bounds for computation -> 0.889001[0.001,0.5]
Interaction: 2614/20016 Out of bounds for computation -> nan[0.001,0.5]
2615
2616
2617
Interaction: 2618/20016 Out of bounds for computation -> 0.565645[0.001,0.5]
2619
2620
Interaction: 2621/20016 Out of bounds for computation -> nan[0.001,0.5]
2622
2623
2624
Interaction: 2625/20016 Out of bounds for computation -> 0.875396[0.001,0.5]
Interaction: 2626/20016 Out of bounds for computation -> 2.10239[0.001,0.5]
2627
2628
Interaction: 2629/20016 Out of bounds for computation -> 2.10007[0.001,0.5]
Interaction: 2630/20016 Out of bounds for computation -> 2.0152[0.001,0.5]
2631
2632
2633
2634
2635
Interaction: 2636/20016 Out of bounds for computation -> 0.804777[0.001,0.5]
Interaction: 2637/20016 Out of bounds for computation -> 0.52468[0.001,0.5]
Interaction: 2638/20016 Out of bounds for computation -> 0.675963[0.001,0.5]
Interaction: 2639/20016 Out of bounds for computation -> 2.18373[0.001,0.5]
Interaction: 2640/20016 Out of bounds for computation -> 1.75158[0.001,0.5]
Interaction: 2641/20016 Out of bounds for computation -> 0.518225[0.001,0.5]
Interaction: 2642/20016 Out of bounds for computation -> 1.79677[0.001,0.5]
Interaction: 2643/20016 Out of bounds for computation -> 0.753311[0.001,0.5]
Interaction: 2644/20016 Out of bounds for computation -> 0.525502[0.001,0.5]
Interaction: 2645/20016 Out of bounds for computation -> 1.63143[0.001,0.5]
Interaction: 2646/20016 Out of bounds for computation -> 0.573429[0.001,0.5]
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
Interaction: 2657/20016 Out of bounds for computation -> 1.33081[0.001,0.5]
Interaction: 2658/20016 Out of bounds for computation -> 0.588697[0.001,0.5]
Interaction: 2659/20016 Out of bounds for computation -> 0.695597[0.001,0.5]
2660
2661
2662
Interaction: 2663/20016 Out of bounds for computation -> 0.625645[0.001,0.5]
2664
2665
2666
Interaction: 2667/20016 Out of bounds for computation -> 1.36372[0.001,0.5]
2668
2669
Interaction: 2670/20016 Out of bounds for computation -> 1.51668[0.001,0.5]
2671
Interaction: 2672/20016 Out of bounds for computation -> 0.674045[0.001,0.5]
2673
Interaction: 2674/20016 Out of bounds for computation -> 0.645132[0.001,0.5]
2675
Interaction: 2676/20016 Out of bounds for computation -> 2.16186[0.001,0.5]
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
Interaction: 2687/20016 Out of bounds for computation -> 1.72032[0.001,0.5]
Interaction: 2688/20016 Out of bounds for computation -> 1.4309[0.001,0.5]
2689
2690
2691
Interaction: 2692/20016 Out of bounds for computation -> 1.58975[0.001,0.5]
Interaction: 2693/20016 Out of bounds for computation -> 1.76335[0.001,0.5]
Interaction: 2694/20016 Out of bounds for computation -> 0.722375[0.001,0.5]
Interaction: 2695/20016 Out of bounds for computation -> 1.71447[0.001,0.5]
Interaction: 2696/20016 Out of bounds for computation -> 2.07344[0.001,0.5]
2697
Interaction: 2698/20016 Out of bounds for computation -> 0.820273[0.001,0.5]
Interaction: 2699/20016 Out of bounds for computation -> 0.561416[0.001,0.5]
2700
Interaction: 2701/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 2702/20016 Out of bounds for computation -> 0.795045[0.001,0.5]
2703
Interaction: 2704/20016 Out of bounds for computation -> 1.66093[0.001,0.5]
2705
Interaction: 2706/20016 Out of bounds for computation -> 1.96174[0.001,0.5]
2707
2708
Interaction: 2709/20016 Out of bounds for computation -> 2.4295[0.001,0.5]
2710
2711
2712
Interaction: 2713/20016 Out of bounds for computation -> 1.77195[0.001,0.5]
2714
2715
Interaction: 2716/20016 Out of bounds for computation -> 1.64432[0.001,0.5]
Interaction: 2717/20016 Out of bounds for computation -> 0.504471[0.001,0.5]
2718
Interaction: 2719/20016 Out of bounds for computation -> 2.55042[0.001,0.5]
Interaction: 2720/20016 Out of bounds for computation -> nan[0.001,0.5]
2721
Interaction: 2722/20016 Out of bounds for computation -> 1.19088[0.001,0.5]
2723
Interaction: 2724/20016 Out of bounds for computation -> 0.547265[0.001,0.5]
2725
2726
Interaction: 2727/20016 Out of bounds for computation -> nan[0.001,0.5]
2728
2729
2730
2731
2732
Interaction: 2733/20016 Out of bounds for computation -> 0.679029[0.001,0.5]
Interaction: 2734/20016 Out of bounds for computation -> 2.0899[0.001,0.5]
Interaction: 2735/20016 Out of bounds for computation -> 0.970453[0.001,0.5]
2736
2737
2738
Interaction: 2739/20016 Out of bounds for computation -> 1.14556[0.001,0.5]
2740
Interaction: 2741/20016 Out of bounds for computation -> 1.42344[0.001,0.5]
2742
2743
2744
2745
2746
2747
2748
Interaction: 2749/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 2750/20016 Out of bounds for computation -> 2.04377[0.001,0.5]
2751
Interaction: 2752/20016 Out of bounds for computation -> 0.90466[0.001,0.5]
Interaction: 2753/20016 Out of bounds for computation -> 1.56102[0.001,0.5]
2754
Interaction: 2755/20016 Out of bounds for computation -> 1.48903[0.001,0.5]
Interaction: 2756/20016 Out of bounds for computation -> 0.564302[0.001,0.5]
2757
2758
Interaction: 2759/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 2760/20016 Out of bounds for computation -> 0.874277[0.001,0.5]
Interaction: 2761/20016 Out of bounds for computation -> 2.11785[0.001,0.5]
2762
2763
2764
2765
Interaction: 2766/20016 Out of bounds for computation -> 1.01559[0.001,0.5]
Interaction: 2767/20016 Out of bounds for computation -> 1.43197[0.001,0.5]
2768
2769
2770
2771
2772
Interaction: 2773/20016 Out of bounds for computation -> 2.16451[0.001,0.5]
2774
Interaction: 2775/20016 Out of bounds for computation -> nan[0.001,0.5]
2776
2777
Interaction: 2778/20016 Out of bounds for computation -> 0.51471[0.001,0.5]
2779
Interaction: 2780/20016 Out of bounds for computation -> 1.02602[0.001,0.5]
2781
2782
Interaction: 2783/20016 Out of bounds for computation -> 0.827177[0.001,0.5]
2784
2785
Interaction: 2786/20016 Out of bounds for computation -> 0.611903[0.001,0.5]
2787
Interaction: 2788/20016 Out of bounds for computation -> 0.508519[0.001,0.5]
Interaction: 2789/20016 Out of bounds for computation -> nan[0.001,0.5]
2790
Interaction: 2791/20016 Out of bounds for computation -> nan[0.001,0.5]
2792
2793
Interaction: 2794/20016 Out of bounds for computation -> 0.530322[0.001,0.5]
Interaction: 2795/20016 Out of bounds for computation -> 2.18618[0.001,0.5]
Interaction: 2796/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 2797/20016 Out of bounds for computation -> 0.631573[0.001,0.5]
Interaction: 2798/20016 Out of bounds for computation -> 1.42238[0.001,0.5]
2799
Interaction: 2800/20016 Out of bounds for computation -> 1.23479[0.001,0.5]
Interaction: 2801/20016 Out of bounds for computation -> 0.559939[0.001,0.5]
2802
2803
2804
2805
Interaction: 2806/20016 Out of bounds for computation -> 0.604756[0.001,0.5]
2807
2808
Interaction: 2809/20016 Out of bounds for computation -> 0.703712[0.001,0.5]
Interaction: 2810/20016 Out of bounds for computation -> 1.47082[0.001,0.5]
Interaction: 2811/20016 Out of bounds for computation -> 2.43295[0.001,0.5]
2812
Interaction: 2813/20016 Out of bounds for computation -> 0.873234[0.001,0.5]
Interaction: 2814/20016 Out of bounds for computation -> 2.60221[0.001,0.5]
2815
2816
2817
2818
Interaction: 2819/20016 Out of bounds for computation -> 1.74947[0.001,0.5]
2820
2821
2822
2823
2824
Interaction: 2825/20016 Out of bounds for computation -> 0.725399[0.001,0.5]
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
Interaction: 2837/20016 Out of bounds for computation -> 2.13281[0.001,0.5]
2838
2839
2840
2841
Interaction: 2842/20016 Out of bounds for computation -> nan[0.001,0.5]
2843
Interaction: 2844/20016 Out of bounds for computation -> 0.787574[0.001,0.5]
Interaction: 2845/20016 Out of bounds for computation -> 0.719332[0.001,0.5]
2846
2847
2848
Interaction: 2849/20016 Out of bounds for computation -> 2.47554[0.001,0.5]
2850
2851
2852
2853
2854
2855
2856
Interaction: 2857/20016 Out of bounds for computation -> 0.585504[0.001,0.5]
Interaction: 2858/20016 Out of bounds for computation -> 0.942434[0.001,0.5]
2859
2860
2861
2862
2863
Interaction: 2864/20016 Out of bounds for computation -> 1.55356[0.001,0.5]
Interaction: 2865/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 2866/20016 Out of bounds for computation -> 2.52679[0.001,0.5]
2867
2868
Interaction: 2869/20016 Out of bounds for computation -> 1.41072[0.001,0.5]
2870
2871
2872
2873
Interaction: 2874/20016 Out of bounds for computation -> 1.97106[0.001,0.5]
Interaction: 2875/20016 Out of bounds for computation -> 0.586364[0.001,0.5]
2876
2877
2878
Interaction: 2879/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 2880/20016 Out of bounds for computation -> 1.44992[0.001,0.5]
2881
2882
2883
2884
Interaction: 2885/20016 Out of bounds for computation -> 1.76828[0.001,0.5]
2886
2887
2888
Interaction: 2889/20016 Out of bounds for computation -> 0.609217[0.001,0.5]
Interaction: 2890/20016 Out of bounds for computation -> nan[0.001,0.5]
2891
Interaction: 2892/20016 Out of bounds for computation -> 0.623465[0.001,0.5]
Interaction: 2893/20016 Out of bounds for computation -> 0.637018[0.001,0.5]
2894
Interaction: 2895/20016 Out of bounds for computation -> 1.41708[0.001,0.5]
2896
2897
Interaction: 2898/20016 Out of bounds for computation -> 1.11186[0.001,0.5]
Interaction: 2899/20016 Out of bounds for computation -> 1.42651[0.001,0.5]
2900
2901
Interaction: 2902/20016 Out of bounds for computation -> 2.2239[0.001,0.5]
2903
2904
2905
Interaction: 2906/20016 Out of bounds for computation -> 0.635394[0.001,0.5]
2907
Interaction: 2908/20016 Out of bounds for computation -> 0.519402[0.001,0.5]
Interaction: 2909/20016 Out of bounds for computation -> 0.71098[0.001,0.5]
2910
2911
2912
2913
Interaction: 2914/20016 Out of bounds for computation -> 2.02878[0.001,0.5]
2915
Interaction: 2916/20016 Out of bounds for computation -> 2.21523[0.001,0.5]
2917
2918
2919
Interaction: 2920/20016 Out of bounds for computation -> 1.40425[0.001,0.5]
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
Interaction: 2936/20016 Out of bounds for computation -> 2.04753[0.001,0.5]
Interaction: 2937/20016 Out of bounds for computation -> 2.31797[0.001,0.5]
2938
2939
2940
2941
2942
Interaction: 2943/20016 Out of bounds for computation -> 2.67141[0.001,0.5]
2944
Interaction: 2945/20016 Out of bounds for computation -> 0.628631[0.001,0.5]
Interaction: 2946/20016 Out of bounds for computation -> 2.11701[0.001,0.5]
Interaction: 2947/20016 Out of bounds for computation -> 2.37846[0.001,0.5]
Interaction: 2948/20016 Out of bounds for computation -> 0.983169[0.001,0.5]
Interaction: 2949/20016 Out of bounds for computation -> 1.07778[0.001,0.5]
Interaction: 2950/20016 Out of bounds for computation -> 0.595782[0.001,0.5]
2951
2952
2953
2954
2955
Interaction: 2956/20016 Out of bounds for computation -> 1.52777[0.001,0.5]
2957
Interaction: 2958/20016 Out of bounds for computation -> nan[0.001,0.5]
2959
Interaction: 2960/20016 Out of bounds for computation -> 0.901538[0.001,0.5]
2961
Interaction: 2962/20016 Out of bounds for computation -> nan[0.001,0.5]
2963
2964
Interaction: 2965/20016 Out of bounds for computation -> 0.644633[0.001,0.5]
Interaction: 2966/20016 Out of bounds for computation -> 0.761294[0.001,0.5]
2967
2968
Interaction: 2969/20016 Out of bounds for computation -> 0.783447[0.001,0.5]
Interaction: 2970/20016 Out of bounds for computation -> 0.90236[0.001,0.5]
Interaction: 2971/20016 Out of bounds for computation -> 0.685308[0.001,0.5]
2972
Interaction: 2973/20016 Out of bounds for computation -> 1.63047[0.001,0.5]
Interaction: 2974/20016 Out of bounds for computation -> 1.39294[0.001,0.5]
Interaction: 2975/20016 Out of bounds for computation -> 0.548077[0.001,0.5]
Interaction: 2976/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 2977/20016 Out of bounds for computation -> 0.550729[0.001,0.5]
Interaction: 2978/20016 Out of bounds for computation -> 0.618445[0.001,0.5]
Interaction: 2979/20016 Out of bounds for computation -> 1.99097[0.001,0.5]
Interaction: 2980/20016 Out of bounds for computation -> 2.77449[0.001,0.5]
2981
2982
2983
2984
2985
Interaction: 2986/20016 Out of bounds for computation -> 2.7512[0.001,0.5]
2987
Interaction: 2988/20016 Out of bounds for computation -> 0.537505[0.001,0.5]
Interaction: 2989/20016 Out of bounds for computation -> 0.57237[0.001,0.5]
Interaction: 2990/20016 Out of bounds for computation -> 0.899817[0.001,0.5]
Interaction: 2991/20016 Out of bounds for computation -> 2.16609[0.001,0.5]
Interaction: 2992/20016 Out of bounds for computation -> 0.501997[0.001,0.5]
Interaction: 2993/20016 Out of bounds for computation -> 1.33196[0.001,0.5]
Interaction: 2994/20016 Out of bounds for computation -> 0.729112[0.001,0.5]
Interaction: 2995/20016 Out of bounds for computation -> 1.17335[0.001,0.5]
Interaction: 2996/20016 Out of bounds for computation -> nan[0.001,0.5]
2997
2998
2999
Interaction: 3000/20016 Out of bounds for computation -> nan[0.001,0.5]
3001
3002
3003
Interaction: 3004/20016 Out of bounds for computation -> 0.851536[0.001,0.5]
Interaction: 3005/20016 Out of bounds for computation -> 1.46589[0.001,0.5]
3006
Interaction: 3007/20016 Out of bounds for computation -> 2.34009[0.001,0.5]
3008
Interaction: 3009/20016 Out of bounds for computation -> 1.47739[0.001,0.5]
3010
Interaction: 3011/20016 Out of bounds for computation -> 1.91716[0.001,0.5]
3012
3013
Interaction: 3014/20016 Out of bounds for computation -> 1.43593[0.001,0.5]
3015
Interaction: 3016/20016 Out of bounds for computation -> 1.80194[0.001,0.5]
Interaction: 3017/20016 Out of bounds for computation -> 1.61034[0.001,0.5]
3018
3019
3020
3021
3022
3023
Interaction: 3024/20016 Out of bounds for computation -> 1.44546[0.001,0.5]
3025
Interaction: 3026/20016 Out of bounds for computation -> 0.602471[0.001,0.5]
Interaction: 3027/20016 Out of bounds for computation -> 0.707553[0.001,0.5]
3028
Interaction: 3029/20016 Out of bounds for computation -> 1.99892[0.001,0.5]
Interaction: 3030/20016 Out of bounds for computation -> 0.638471[0.001,0.5]
3031
3032
3033
3034
Interaction: 3035/20016 Out of bounds for computation -> 0.541467[0.001,0.5]
3036
3037
Interaction: 3038/20016 Out of bounds for computation -> 0.810842[0.001,0.5]
3039
Interaction: 3040/20016 Out of bounds for computation -> 1.013[0.001,0.5]
3041
3042
3043
3044
Interaction: 3045/20016 Out of bounds for computation -> 1.35135[0.001,0.5]
3046
3047
Interaction: 3048/20016 Out of bounds for computation -> 1.42973[0.001,0.5]
Interaction: 3049/20016 Out of bounds for computation -> 2.00063[0.001,0.5]
Interaction: 3050/20016 Out of bounds for computation -> 1.61742[0.001,0.5]
3051
3052
Interaction: 3053/20016 Out of bounds for computation -> 1.42315[0.001,0.5]
Interaction: 3054/20016 Out of bounds for computation -> 0.900131[0.001,0.5]
Interaction: 3055/20016 Out of bounds for computation -> 2.26042[0.001,0.5]
3056
3057
3058
Interaction: 3059/20016 Out of bounds for computation -> 1.41131[0.001,0.5]
Interaction: 3060/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 3061/20016 Out of bounds for computation -> 1.37144[0.001,0.5]
3062
3063
3064
Interaction: 3065/20016 Out of bounds for computation -> 0.605077[0.001,0.5]
Interaction: 3066/20016 Out of bounds for computation -> 1.67921[0.001,0.5]
3067
3068
Interaction: 3069/20016 Out of bounds for computation -> 1.82086[0.001,0.5]
3070
Interaction: 3071/20016 Out of bounds for computation -> 1.45487[0.001,0.5]
Interaction: 3072/20016 Out of bounds for computation -> 1.10491[0.001,0.5]
3073
Interaction: 3074/20016 Out of bounds for computation -> nan[0.001,0.5]
3075
3076
Interaction: 3077/20016 Out of bounds for computation -> 0.522872[0.001,0.5]
Interaction: 3078/20016 Out of bounds for computation -> nan[0.001,0.5]
3079
3080
Interaction: 3081/20016 Out of bounds for computation -> 0.837519[0.001,0.5]
Interaction: 3082/20016 Out of bounds for computation -> 1.73098[0.001,0.5]
3083
Interaction: 3084/20016 Out of bounds for computation -> 1.05408[0.001,0.5]
3085
3086
3087
3088
3089
Interaction: 3090/20016 Out of bounds for computation -> 0.667094[0.001,0.5]
3091
Interaction: 3092/20016 Out of bounds for computation -> 1.65836[0.001,0.5]
3093
3094
Interaction: 3095/20016 Out of bounds for computation -> 0.81789[0.001,0.5]
3096
Interaction: 3097/20016 Out of bounds for computation -> nan[0.001,0.5]
3098
3099
3100
Interaction: 3101/20016 Out of bounds for computation -> 1.13486[0.001,0.5]
Interaction: 3102/20016 Out of bounds for computation -> 1.47484[0.001,0.5]
3103
3104
Interaction: 3105/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 3106/20016 Out of bounds for computation -> 0.838077[0.001,0.5]
3107
3108
3109
3110
Interaction: 3111/20016 Out of bounds for computation -> 1.84654[0.001,0.5]
3112
Interaction: 3113/20016 Out of bounds for computation -> 1.34312[0.001,0.5]
Interaction: 3114/20016 Out of bounds for computation -> 2.10947[0.001,0.5]
3115
3116
Interaction: 3117/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 3118/20016 Out of bounds for computation -> 1.7108[0.001,0.5]
Interaction: 3119/20016 Out of bounds for computation -> 0.861218[0.001,0.5]
Interaction: 3120/20016 Out of bounds for computation -> 0.507634[0.001,0.5]
Interaction: 3121/20016 Out of bounds for computation -> 1.17163[0.001,0.5]
3122
Interaction: 3123/20016 Out of bounds for computation -> 2.45911[0.001,0.5]
3124
3125
3126
3127
3128
Interaction: 3129/20016 Out of bounds for computation -> 1.64717[0.001,0.5]
Interaction: 3130/20016 Out of bounds for computation -> 2.01233[0.001,0.5]
Interaction: 3131/20016 Out of bounds for computation -> 1.64448[0.001,0.5]
Interaction: 3132/20016 Out of bounds for computation -> 1.43153[0.001,0.5]
3133
3134
3135
3136
3137
3138
Interaction: 3139/20016 Out of bounds for computation -> 1.43241[0.001,0.5]
Interaction: 3140/20016 Out of bounds for computation -> 0.696161[0.001,0.5]
Interaction: 3141/20016 Out of bounds for computation -> 2.21269[0.001,0.5]
Interaction: 3142/20016 Out of bounds for computation -> 1.37639[0.001,0.5]
Interaction: 3143/20016 Out of bounds for computation -> 2.7944[0.001,0.5]
3144
Interaction: 3145/20016 Out of bounds for computation -> nan[0.001,0.5]
3146
Interaction: 3147/20016 Out of bounds for computation -> 0.52239[0.001,0.5]
Interaction: 3148/20016 Out of bounds for computation -> 0.6248[0.001,0.5]
Interaction: 3149/20016 Out of bounds for computation -> 0.777231[0.001,0.5]
Interaction: 3150/20016 Out of bounds for computation -> 1.6817[0.001,0.5]
Interaction: 3151/20016 Out of bounds for computation -> 0.511336[0.001,0.5]
3152
3153
Interaction: 3154/20016 Out of bounds for computation -> 1.23645[0.001,0.5]
3155
3156
Interaction: 3157/20016 Out of bounds for computation -> 1.36348[0.001,0.5]
Interaction: 3158/20016 Out of bounds for computation -> 0.637048[0.001,0.5]
Interaction: 3159/20016 Out of bounds for computation -> 2.23246[0.001,0.5]
3160
Interaction: 3161/20016 Out of bounds for computation -> 0.913993[0.001,0.5]
3162
Interaction: 3163/20016 Out of bounds for computation -> 0.538224[0.001,0.5]
3164
Interaction: 3165/20016 Out of bounds for computation -> 1.04099[0.001,0.5]
Interaction: 3166/20016 Out of bounds for computation -> 0.843158[0.001,0.5]
3167
Interaction: 3168/20016 Out of bounds for computation -> nan[0.001,0.5]
3169
3170
3171
Interaction: 3172/20016 Out of bounds for computation -> 1.43892[0.001,0.5]
Interaction: 3173/20016 Out of bounds for computation -> 0.523072[0.001,0.5]
3174
Interaction: 3175/20016 Out of bounds for computation -> nan[0.001,0.5]
3176
3177
Interaction: 3178/20016 Out of bounds for computation -> 1.29866[0.001,0.5]
3179
Interaction: 3180/20016 Out of bounds for computation -> 0.647815[0.001,0.5]
Interaction: 3181/20016 Out of bounds for computation -> nan[0.001,0.5]
3182
3183
3184
3185
Interaction: 3186/20016 Out of bounds for computation -> 2.35008[0.001,0.5]
3187
3188
3189
3190
Interaction: 3191/20016 Out of bounds for computation -> 1.38492[0.001,0.5]
3192
3193
Interaction: 3194/20016 Out of bounds for computation -> 1.70093[0.001,0.5]
3195
Interaction: 3196/20016 Out of bounds for computation -> 1.40683[0.001,0.5]
3197
3198
3199
3200
Interaction: 3201/20016 Out of bounds for computation -> 0.647164[0.001,0.5]
3202
3203
Interaction: 3204/20016 Out of bounds for computation -> 1.19418[0.001,0.5]
Interaction: 3205/20016 Out of bounds for computation -> 2.02195[0.001,0.5]
Interaction: 3206/20016 Out of bounds for computation -> 2.3915[0.001,0.5]
Interaction: 3207/20016 Out of bounds for computation -> 1.41441[0.001,0.5]
3208
Interaction: 3209/20016 Out of bounds for computation -> 1.39554[0.001,0.5]
3210
Interaction: 3211/20016 Out of bounds for computation -> 2.52731[0.001,0.5]
3212
3213
Interaction: 3214/20016 Out of bounds for computation -> 1.10243[0.001,0.5]
3215
Interaction: 3216/20016 Out of bounds for computation -> 0.830147[0.001,0.5]
Interaction: 3217/20016 Out of bounds for computation -> 1.60753[0.001,0.5]
3218
3219
3220
3221
Interaction: 3222/20016 Out of bounds for computation -> 0.595364[0.001,0.5]
3223
Interaction: 3224/20016 Out of bounds for computation -> 0.623239[0.001,0.5]
3225
3226
Interaction: 3227/20016 Out of bounds for computation -> 0.887769[0.001,0.5]
Interaction: 3228/20016 Out of bounds for computation -> 2.44414[0.001,0.5]
3229
Interaction: 3230/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 3231/20016 Out of bounds for computation -> 1.00142[0.001,0.5]
Interaction: 3232/20016 Out of bounds for computation -> 0.577575[0.001,0.5]
3233
Interaction: 3234/20016 Out of bounds for computation -> 2.05534[0.001,0.5]
3235
3236
3237
Interaction: 3238/20016 Out of bounds for computation -> 1.91924[0.001,0.5]
3239
Interaction: 3240/20016 Out of bounds for computation -> nan[0.001,0.5]
3241
Interaction: 3242/20016 Out of bounds for computation -> 0.623968[0.001,0.5]
3243
3244
Interaction: 3245/20016 Out of bounds for computation -> 2.34177[0.001,0.5]
Interaction: 3246/20016 Out of bounds for computation -> 1.37272[0.001,0.5]
Interaction: 3247/20016 Out of bounds for computation -> nan[0.001,0.5]
3248
3249
Interaction: 3250/20016 Out of bounds for computation -> 1.74345[0.001,0.5]
Interaction: 3251/20016 Out of bounds for computation -> 0.766452[0.001,0.5]
3252
3253
Interaction: 3254/20016 Out of bounds for computation -> 0.761324[0.001,0.5]
Interaction: 3255/20016 Out of bounds for computation -> 1.04987[0.001,0.5]
Interaction: 3256/20016 Out of bounds for computation -> 0.659843[0.001,0.5]
Interaction: 3257/20016 Out of bounds for computation -> 1.36768[0.001,0.5]
3258
3259
3260
3261
Interaction: 3262/20016 Out of bounds for computation -> 1.43361[0.001,0.5]
3263
Interaction: 3264/20016 Out of bounds for computation -> 0.776925[0.001,0.5]
3265
3266
3267
Interaction: 3268/20016 Out of bounds for computation -> 2.63521[0.001,0.5]
3269
3270
Interaction: 3271/20016 Out of bounds for computation -> 0.523048[0.001,0.5]
3272
3273
3274
3275
Interaction: 3276/20016 Out of bounds for computation -> 0.752309[0.001,0.5]
Interaction: 3277/20016 Out of bounds for computation -> 0.56654[0.001,0.5]
3278
3279
3280
3281
Interaction: 3282/20016 Out of bounds for computation -> 0.714511[0.001,0.5]
Interaction: 3283/20016 Out of bounds for computation -> 2.68296[0.001,0.5]
3284
3285
3286
3287
3288
Interaction: 3289/20016 Out of bounds for computation -> 2.79274[0.001,0.5]
Interaction: 3290/20016 Out of bounds for computation -> 0.630476[0.001,0.5]
3291
Interaction: 3292/20016 Out of bounds for computation -> 1.44846[0.001,0.5]
3293
3294
3295
Interaction: 3296/20016 Out of bounds for computation -> 0.782738[0.001,0.5]
3297
3298
Interaction: 3299/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 3300/20016 Out of bounds for computation -> 2.71285[0.001,0.5]
3301
3302
3303
Interaction: 3304/20016 Out of bounds for computation -> 1.66616[0.001,0.5]
Interaction: 3305/20016 Out of bounds for computation -> 1.74119[0.001,0.5]
3306
Interaction: 3307/20016 Out of bounds for computation -> 0.599268[0.001,0.5]
Interaction: 3308/20016 Out of bounds for computation -> 1.6937[0.001,0.5]
Interaction: 3309/20016 Out of bounds for computation -> 1.28355[0.001,0.5]
3310
3311
Interaction: 3312/20016 Out of bounds for computation -> 0.577812[0.001,0.5]
Interaction: 3313/20016 Out of bounds for computation -> 0.980618[0.001,0.5]
3314
Interaction: 3315/20016 Out of bounds for computation -> 0.745576[0.001,0.5]
3316
3317
Interaction: 3318/20016 Out of bounds for computation -> 0.829074[0.001,0.5]
Interaction: 3319/20016 Out of bounds for computation -> 1.09643[0.001,0.5]
3320
3321
Interaction: 3322/20016 Out of bounds for computation -> 1.39341[0.001,0.5]
Interaction: 3323/20016 Out of bounds for computation -> 1.60553[0.001,0.5]
3324
Interaction: 3325/20016 Out of bounds for computation -> nan[0.001,0.5]
3326
Interaction: 3327/20016 Out of bounds for computation -> 1.86026[0.001,0.5]
Interaction: 3328/20016 Out of bounds for computation -> 0.696938[0.001,0.5]
3329
Interaction: 3330/20016 Out of bounds for computation -> 1.91679[0.001,0.5]
3331
Interaction: 3332/20016 Out of bounds for computation -> 1.42952[0.001,0.5]
Interaction: 3333/20016 Out of bounds for computation -> nan[0.001,0.5]
3334
Interaction: 3335/20016 Out of bounds for computation -> 2.60573[0.001,0.5]
Interaction: 3336/20016 Out of bounds for computation -> 1.41941[0.001,0.5]
3337
Interaction: 3338/20016 Out of bounds for computation -> nan[0.001,0.5]
3339
3340
3341
Interaction: 3342/20016 Out of bounds for computation -> 0.552866[0.001,0.5]
Interaction: 3343/20016 Out of bounds for computation -> 0.536411[0.001,0.5]
Interaction: 3344/20016 Out of bounds for computation -> 1.22404[0.001,0.5]
3345
3346
3347
3348
3349
Interaction: 3350/20016 Out of bounds for computation -> 0.648552[0.001,0.5]
Interaction: 3351/20016 Out of bounds for computation -> 1.49776[0.001,0.5]
Interaction: 3352/20016 Out of bounds for computation -> 1.48391[0.001,0.5]
3353
3354
3355
Interaction: 3356/20016 Out of bounds for computation -> 1.77997[0.001,0.5]
3357
Interaction: 3358/20016 Out of bounds for computation -> 0.717677[0.001,0.5]
Interaction: 3359/20016 Out of bounds for computation -> 1.81045[0.001,0.5]
Interaction: 3360/20016 Out of bounds for computation -> 1.37597[0.001,0.5]
3361
3362
3363
Interaction: 3364/20016 Out of bounds for computation -> 1.39661[0.001,0.5]
3365
Interaction: 3366/20016 Out of bounds for computation -> 0.682006[0.001,0.5]
3367
3368
3369
Interaction: 3370/20016 Out of bounds for computation -> 0.516933[0.001,0.5]
3371
Interaction: 3372/20016 Out of bounds for computation -> 2.64966[0.001,0.5]
Interaction: 3373/20016 Out of bounds for computation -> 0.759209[0.001,0.5]
Interaction: 3374/20016 Out of bounds for computation -> 0.658122[0.001,0.5]
Interaction: 3375/20016 Out of bounds for computation -> 0.582685[0.001,0.5]
Interaction: 3376/20016 Out of bounds for computation -> 0.549018[0.001,0.5]
3377
3378
3379
3380
3381
3382
Interaction: 3383/20016 Out of bounds for computation -> 1.76702[0.001,0.5]
3384
3385
Interaction: 3386/20016 Out of bounds for computation -> 1.16705[0.001,0.5]
Interaction: 3387/20016 Out of bounds for computation -> 2.2414[0.001,0.5]
3388
3389
3390
3391
3392
3393
Interaction: 3394/20016 Out of bounds for computation -> 2.37262[0.001,0.5]
3395
3396
Interaction: 3397/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 3398/20016 Out of bounds for computation -> 0.525665[0.001,0.5]
3399
Interaction: 3400/20016 Out of bounds for computation -> 1.57959[0.001,0.5]
Interaction: 3401/20016 Out of bounds for computation -> 1.02179[0.001,0.5]
Interaction: 3402/20016 Out of bounds for computation -> 1.51737[0.001,0.5]
3403
Interaction: 3404/20016 Out of bounds for computation -> 2.45705[0.001,0.5]
Interaction: 3405/20016 Out of bounds for computation -> 0.651117[0.001,0.5]
Interaction: 3406/20016 Out of bounds for computation -> 1.53684[0.001,0.5]
Interaction: 3407/20016 Out of bounds for computation -> 1.4033[0.001,0.5]
Interaction: 3408/20016 Out of bounds for computation -> 0.671145[0.001,0.5]
3409
3410
3411
3412
Interaction: 3413/20016 Out of bounds for computation -> 1.37832[0.001,0.5]
3414
Interaction: 3415/20016 Out of bounds for computation -> 1.44937[0.001,0.5]
3416
Interaction: 3417/20016 Out of bounds for computation -> 1.41157[0.001,0.5]
Interaction: 3418/20016 Out of bounds for computation -> 2.18714[0.001,0.5]
3419
Interaction: 3420/20016 Out of bounds for computation -> 0.657934[0.001,0.5]
Interaction: 3421/20016 Out of bounds for computation -> 1.8265[0.001,0.5]
Interaction: 3422/20016 Out of bounds for computation -> 1.43616[0.001,0.5]
Interaction: 3423/20016 Out of bounds for computation -> 0.69255[0.001,0.5]
3424
3425
3426
3427
Interaction: 3428/20016 Out of bounds for computation -> 1.72716[0.001,0.5]
3429
Interaction: 3430/20016 Out of bounds for computation -> 2.04901[0.001,0.5]
Interaction: 3431/20016 Out of bounds for computation -> 2.0011[0.001,0.5]
3432
3433
3434
Interaction: 3435/20016 Out of bounds for computation -> 2.78369[0.001,0.5]
3436
Interaction: 3437/20016 Out of bounds for computation -> 2.54658[0.001,0.5]
Interaction: 3438/20016 Out of bounds for computation -> 0.507111[0.001,0.5]
Interaction: 3439/20016 Out of bounds for computation -> 2.00143[0.001,0.5]
Interaction: 3440/20016 Out of bounds for computation -> 1.41739[0.001,0.5]
3441
Interaction: 3442/20016 Out of bounds for computation -> 0.807288[0.001,0.5]
3443
Interaction: 3444/20016 Out of bounds for computation -> 0.650081[0.001,0.5]
3445
3446
3447
3448
Interaction: 3449/20016 Out of bounds for computation -> 0.739955[0.001,0.5]
Interaction: 3450/20016 Out of bounds for computation -> 2.55795[0.001,0.5]
3451
Interaction: 3452/20016 Out of bounds for computation -> 1.44152[0.001,0.5]
3453
3454
3455
3456
3457
Interaction: 3458/20016 Out of bounds for computation -> 1.16641[0.001,0.5]
3459
3460
Interaction: 3461/20016 Out of bounds for computation -> nan[0.001,0.5]
3462
3463
Interaction: 3464/20016 Out of bounds for computation -> 0.890255[0.001,0.5]
3465
3466
Interaction: 3467/20016 Out of bounds for computation -> 2.07709[0.001,0.5]
Interaction: 3468/20016 Out of bounds for computation -> 1.39207[0.001,0.5]
3469
Interaction: 3470/20016 Out of bounds for computation -> 0.510744[0.001,0.5]
Interaction: 3471/20016 Out of bounds for computation -> 0.568075[0.001,0.5]
3472
3473
3474
3475
3476
3477
3478
Interaction: 3479/20016 Out of bounds for computation -> 0.830226[0.001,0.5]
Interaction: 3480/20016 Out of bounds for computation -> 1.72066[0.001,0.5]
Interaction: 3481/20016 Out of bounds for computation -> 0.874557[0.001,0.5]
Interaction: 3482/20016 Out of bounds for computation -> 1.68756[0.001,0.5]
Interaction: 3483/20016 Out of bounds for computation -> nan[0.001,0.5]
3484
3485
3486
Interaction: 3487/20016 Out of bounds for computation -> 1.45566[0.001,0.5]
3488
3489
Interaction: 3490/20016 Out of bounds for computation -> 1.35823[0.001,0.5]
Interaction: 3491/20016 Out of bounds for computation -> 2.08544[0.001,0.5]
Interaction: 3492/20016 Out of bounds for computation -> 1.132[0.001,0.5]
3493
3494
Interaction: 3495/20016 Out of bounds for computation -> 0.538683[0.001,0.5]
3496
3497
3498
3499
3500
Interaction: 3501/20016 Out of bounds for computation -> 0.788186[0.001,0.5]
Interaction: 3502/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 3503/20016 Out of bounds for computation -> 1.40543[0.001,0.5]
3504
Interaction: 3505/20016 Out of bounds for computation -> 0.724798[0.001,0.5]
3506
3507
3508
3509
3510
3511
3512
3513
Interaction: 3514/20016 Out of bounds for computation -> 0.501324[0.001,0.5]
3515
Interaction: 3516/20016 Out of bounds for computation -> 0.677625[0.001,0.5]
3517
3518
Interaction: 3519/20016 Out of bounds for computation -> 1.7397[0.001,0.5]
Interaction: 3520/20016 Out of bounds for computation -> 1.57635[0.001,0.5]
3521
3522
3523
3524
3525
3526
3527
Interaction: 3528/20016 Out of bounds for computation -> 0.688293[0.001,0.5]
3529
3530
3531
3532
Interaction: 3533/20016 Out of bounds for computation -> 2.65274[0.001,0.5]
Interaction: 3534/20016 Out of bounds for computation -> 0.542484[0.001,0.5]
Interaction: 3535/20016 Out of bounds for computation -> 1.68123[0.001,0.5]
Interaction: 3536/20016 Out of bounds for computation -> 1.36457[0.001,0.5]
Interaction: 3537/20016 Out of bounds for computation -> 1.41641[0.001,0.5]
Interaction: 3538/20016 Out of bounds for computation -> 0.626227[0.001,0.5]
3539
Interaction: 3540/20016 Out of bounds for computation -> 1.9678[0.001,0.5]
3541
Interaction: 3542/20016 Out of bounds for computation -> 1.53796[0.001,0.5]
Interaction: 3543/20016 Out of bounds for computation -> 0.543807[0.001,0.5]
Interaction: 3544/20016 Out of bounds for computation -> 0.61988[0.001,0.5]
Interaction: 3545/20016 Out of bounds for computation -> 0.557756[0.001,0.5]
3546
3547
Interaction: 3548/20016 Out of bounds for computation -> 1.86713[0.001,0.5]
Interaction: 3549/20016 Out of bounds for computation -> 0.522503[0.001,0.5]
3550
3551
Interaction: 3552/20016 Out of bounds for computation -> 2.00161[0.001,0.5]
Interaction: 3553/20016 Out of bounds for computation -> 1.37665[0.001,0.5]
3554
Interaction: 3555/20016 Out of bounds for computation -> 0.859033[0.001,0.5]
Interaction: 3556/20016 Out of bounds for computation -> 1.43289[0.001,0.5]
3557
Interaction: 3558/20016 Out of bounds for computation -> 1.18694[0.001,0.5]
Interaction: 3559/20016 Out of bounds for computation -> 1.45235[0.001,0.5]
3560
3561
Interaction: 3562/20016 Out of bounds for computation -> 1.93979[0.001,0.5]
Interaction: 3563/20016 Out of bounds for computation -> 0.813115[0.001,0.5]
Interaction: 3564/20016 Out of bounds for computation -> 0.730245[0.001,0.5]
Interaction: 3565/20016 Out of bounds for computation -> 0.959376[0.001,0.5]
Interaction: 3566/20016 Out of bounds for computation -> 1.39123[0.001,0.5]
Interaction: 3567/20016 Out of bounds for computation -> nan[0.001,0.5]
3568
Interaction: 3569/20016 Out of bounds for computation -> 3.11[0.001,0.5]
Interaction: 3570/20016 Out of bounds for computation -> nan[0.001,0.5]
3571
Interaction: 3572/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 3573/20016 Out of bounds for computation -> 2.04938[0.001,0.5]
3574
3575
3576
3577
3578
Interaction: 3579/20016 Out of bounds for computation -> 0.607405[0.001,0.5]
3580
3581
Interaction: 3582/20016 Out of bounds for computation -> 0.716079[0.001,0.5]
3583
Interaction: 3584/20016 Out of bounds for computation -> 0.773499[0.001,0.5]
3585
3586
3587
3588
3589
3590
Interaction: 3591/20016 Out of bounds for computation -> 2.59423[0.001,0.5]
3592
3593
Interaction: 3594/20016 Out of bounds for computation -> 0.523388[0.001,0.5]
Interaction: 3595/20016 Out of bounds for computation -> 0.889328[0.001,0.5]
3596
3597
Interaction: 3598/20016 Out of bounds for computation -> 0.590971[0.001,0.5]
Interaction: 3599/20016 Out of bounds for computation -> 0.678175[0.001,0.5]
3600
Interaction: 3601/20016 Out of bounds for computation -> nan[0.001,0.5]
3602
Interaction: 3603/20016 Out of bounds for computation -> 0.597864[0.001,0.5]
3604
Interaction: 3605/20016 Out of bounds for computation -> 0.685029[0.001,0.5]
Interaction: 3606/20016 Out of bounds for computation -> 1.39883[0.001,0.5]
3607
3608
Interaction: 3609/20016 Out of bounds for computation -> 0.71456[0.001,0.5]
3610
3611
3612
3613
Interaction: 3614/20016 Out of bounds for computation -> 1.0676[0.001,0.5]
3615
Interaction: 3616/20016 Out of bounds for computation -> 0.670219[0.001,0.5]
Interaction: 3617/20016 Out of bounds for computation -> 2.72226[0.001,0.5]
Interaction: 3618/20016 Out of bounds for computation -> 2.04892[0.001,0.5]
3619
3620
3621
Interaction: 3622/20016 Out of bounds for computation -> 2.19835[0.001,0.5]
3623
3624
3625
3626
3627
Interaction: 3628/20016 Out of bounds for computation -> 1.60048[0.001,0.5]
3629
Interaction: 3630/20016 Out of bounds for computation -> 1.81247[0.001,0.5]
3631
Interaction: 3632/20016 Out of bounds for computation -> 1.39209[0.001,0.5]
Interaction: 3633/20016 Out of bounds for computation -> 0.767944[0.001,0.5]
Interaction: 3634/20016 Out of bounds for computation -> 0.647197[0.001,0.5]
Interaction: 3635/20016 Out of bounds for computation -> 0.529929[0.001,0.5]
3636
Interaction: 3637/20016 Out of bounds for computation -> 1.4284[0.001,0.5]
3638
Interaction: 3639/20016 Out of bounds for computation -> 2.13531[0.001,0.5]
Interaction: 3640/20016 Out of bounds for computation -> nan[0.001,0.5]
3641
Interaction: 3642/20016 Out of bounds for computation -> 1.43834[0.001,0.5]
Interaction: 3643/20016 Out of bounds for computation -> 1.04514[0.001,0.5]
3644
3645
Interaction: 3646/20016 Out of bounds for computation -> nan[0.001,0.5]
3647
Interaction: 3648/20016 Out of bounds for computation -> nan[0.001,0.5]
3649
3650
Interaction: 3651/20016 Out of bounds for computation -> 0.58292[0.001,0.5]
3652
Interaction: 3653/20016 Out of bounds for computation -> 0.83934[0.001,0.5]
Interaction: 3654/20016 Out of bounds for computation -> 0.675188[0.001,0.5]
3655
Interaction: 3656/20016 Out of bounds for computation -> 1.80515[0.001,0.5]
Interaction: 3657/20016 Out of bounds for computation -> 0.686215[0.001,0.5]
3658
3659
Interaction: 3660/20016 Out of bounds for computation -> 2.52453[0.001,0.5]
Interaction: 3661/20016 Out of bounds for computation -> 0.595138[0.001,0.5]
3662
Interaction: 3663/20016 Out of bounds for computation -> 0.631578[0.001,0.5]
Interaction: 3664/20016 Out of bounds for computation -> 1.19792[0.001,0.5]
3665
Interaction: 3666/20016 Out of bounds for computation -> 1.42289[0.001,0.5]
3667
3668
3669
3670
Interaction: 3671/20016 Out of bounds for computation -> 1.44815[0.001,0.5]
3672
Interaction: 3673/20016 Out of bounds for computation -> 0.830516[0.001,0.5]
Interaction: 3674/20016 Out of bounds for computation -> 0.615135[0.001,0.5]
3675
3676
3677
3678
Interaction: 3679/20016 Out of bounds for computation -> 0.851276[0.001,0.5]
3680
3681
3682
3683
3684
3685
3686
3687
Interaction: 3688/20016 Out of bounds for computation -> 2.19848[0.001,0.5]
3689
3690
3691
Interaction: 3692/20016 Out of bounds for computation -> 1.41921[0.001,0.5]
3693
Interaction: 3694/20016 Out of bounds for computation -> 3.01163[0.001,0.5]
3695
Interaction: 3696/20016 Out of bounds for computation -> 1.39604[0.001,0.5]
Interaction: 3697/20016 Out of bounds for computation -> 0.713882[0.001,0.5]
Interaction: 3698/20016 Out of bounds for computation -> 1.00351[0.001,0.5]
3699
Interaction: 3700/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 3701/20016 Out of bounds for computation -> 2.56557[0.001,0.5]
Interaction: 3702/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 3703/20016 Out of bounds for computation -> 0.690572[0.001,0.5]
3704
3705
3706
3707
3708
3709
3710
Interaction: 3711/20016 Out of bounds for computation -> 2.61747[0.001,0.5]
3712
Interaction: 3713/20016 Out of bounds for computation -> 0.649075[0.001,0.5]
3714
3715
Interaction: 3716/20016 Out of bounds for computation -> 0.895682[0.001,0.5]
Interaction: 3717/20016 Out of bounds for computation -> 2.64447[0.001,0.5]
Interaction: 3718/20016 Out of bounds for computation -> 1.49957[0.001,0.5]
Interaction: 3719/20016 Out of bounds for computation -> 1.20791[0.001,0.5]
Interaction: 3720/20016 Out of bounds for computation -> 1.44797[0.001,0.5]
Interaction: 3721/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 3722/20016 Out of bounds for computation -> 1.47039[0.001,0.5]
3723
3724
Interaction: 3725/20016 Out of bounds for computation -> 1.33958[0.001,0.5]
3726
Interaction: 3727/20016 Out of bounds for computation -> 2.98782[0.001,0.5]
3728
Interaction: 3729/20016 Out of bounds for computation -> 1.3765[0.001,0.5]
3730
3731
3732
3733
Interaction: 3734/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 3735/20016 Out of bounds for computation -> 1.04483[0.001,0.5]
Interaction: 3736/20016 Out of bounds for computation -> nan[0.001,0.5]
3737
3738
3739
3740
3741
Interaction: 3742/20016 Out of bounds for computation -> 0.748668[0.001,0.5]
Interaction: 3743/20016 Out of bounds for computation -> 2.99355[0.001,0.5]
Interaction: 3744/20016 Out of bounds for computation -> 1.77491[0.001,0.5]
Interaction: 3745/20016 Out of bounds for computation -> 2.14765[0.001,0.5]
Interaction: 3746/20016 Out of bounds for computation -> 1.08832[0.001,0.5]
Interaction: 3747/20016 Out of bounds for computation -> 1.25208[0.001,0.5]
3748
3749
Interaction: 3750/20016 Out of bounds for computation -> 0.579381[0.001,0.5]
Interaction: 3751/20016 Out of bounds for computation -> nan[0.001,0.5]
3752
3753
3754
Interaction: 3755/20016 Out of bounds for computation -> 1.7104[0.001,0.5]
Interaction: 3756/20016 Out of bounds for computation -> 0.93137[0.001,0.5]
3757
3758
Interaction: 3759/20016 Out of bounds for computation -> 1.17968[0.001,0.5]
Interaction: 3760/20016 Out of bounds for computation -> 0.547135[0.001,0.5]
Interaction: 3761/20016 Out of bounds for computation -> 2.90134[0.001,0.5]
Interaction: 3762/20016 Out of bounds for computation -> 0.666542[0.001,0.5]
3763
Interaction: 3764/20016 Out of bounds for computation -> 0.744606[0.001,0.5]
Interaction: 3765/20016 Out of bounds for computation -> 0.762091[0.001,0.5]
3766
3767
Interaction: 3768/20016 Out of bounds for computation -> 1.12291[0.001,0.5]
Interaction: 3769/20016 Out of bounds for computation -> 1.04948[0.001,0.5]
3770
3771
3772
Interaction: 3773/20016 Out of bounds for computation -> 1.69748[0.001,0.5]
3774
Interaction: 3775/20016 Out of bounds for computation -> 2.1154[0.001,0.5]
Interaction: 3776/20016 Out of bounds for computation -> 0.68893[0.001,0.5]
3777
3778
3779
3780
Interaction: 3781/20016 Out of bounds for computation -> 0.534917[0.001,0.5]
Interaction: 3782/20016 Out of bounds for computation -> 0.754788[0.001,0.5]
3783
Interaction: 3784/20016 Out of bounds for computation -> 0.797276[0.001,0.5]
3785
3786
3787
3788
3789
Interaction: 3790/20016 Out of bounds for computation -> 1.47265[0.001,0.5]
Interaction: 3791/20016 Out of bounds for computation -> nan[0.001,0.5]
3792
Interaction: 3793/20016 Out of bounds for computation -> 1.80612[0.001,0.5]
3794
3795
3796
3797
Interaction: 3798/20016 Out of bounds for computation -> 1.46387[0.001,0.5]
3799
3800
Interaction: 3801/20016 Out of bounds for computation -> 2.04815[0.001,0.5]
3802
3803
3804
3805
3806
3807
3808
Interaction: 3809/20016 Out of bounds for computation -> 0.680225[0.001,0.5]
3810
3811
3812
3813
Interaction: 3814/20016 Out of bounds for computation -> 0.696882[0.001,0.5]
Interaction: 3815/20016 Out of bounds for computation -> 0.655805[0.001,0.5]
3816
3817
3818
Interaction: 3819/20016 Out of bounds for computation -> 0.890219[0.001,0.5]
Interaction: 3820/20016 Out of bounds for computation -> 0.841449[0.001,0.5]
3821
Interaction: 3822/20016 Out of bounds for computation -> 0.603424[0.001,0.5]
Interaction: 3823/20016 Out of bounds for computation -> 0.633615[0.001,0.5]
Interaction: 3824/20016 Out of bounds for computation -> 2.93194[0.001,0.5]
3825
3826
3827
3828
Interaction: 3829/20016 Out of bounds for computation -> 0.746294[0.001,0.5]
3830
3831
3832
3833
Interaction: 3834/20016 Out of bounds for computation -> 1.53572[0.001,0.5]
3835
3836
Interaction: 3837/20016 Out of bounds for computation -> 2.29377[0.001,0.5]
Interaction: 3838/20016 Out of bounds for computation -> 1.39257[0.001,0.5]
3839
Interaction: 3840/20016 Out of bounds for computation -> 0.566386[0.001,0.5]
3841
Interaction: 3842/20016 Out of bounds for computation -> 2.09036[0.001,0.5]
3843
3844
3845
3846
3847
Interaction: 3848/20016 Out of bounds for computation -> 0.682795[0.001,0.5]
3849
3850
3851
3852
Interaction: 3853/20016 Out of bounds for computation -> 1.3059[0.001,0.5]
3854
3855
Interaction: 3856/20016 Out of bounds for computation -> 1.38306[0.001,0.5]
3857
3858
3859
3860
3861
Interaction: 3862/20016 Out of bounds for computation -> 2.13661[0.001,0.5]
Interaction: 3863/20016 Out of bounds for computation -> 0.84926[0.001,0.5]
Interaction: 3864/20016 Out of bounds for computation -> 0.731001[0.001,0.5]
3865
3866
3867
Interaction: 3868/20016 Out of bounds for computation -> 2.43061[0.001,0.5]
Interaction: 3869/20016 Out of bounds for computation -> 1.40107[0.001,0.5]
Interaction: 3870/20016 Out of bounds for computation -> 2.08672[0.001,0.5]
Interaction: 3871/20016 Out of bounds for computation -> nan[0.001,0.5]
3872
3873
3874
Interaction: 3875/20016 Out of bounds for computation -> 1.37917[0.001,0.5]
3876
Interaction: 3877/20016 Out of bounds for computation -> 0.91729[0.001,0.5]
Interaction: 3878/20016 Out of bounds for computation -> 1.21321[0.001,0.5]
Interaction: 3879/20016 Out of bounds for computation -> 0.948997[0.001,0.5]
3880
3881
Interaction: 3882/20016 Out of bounds for computation -> 0.615775[0.001,0.5]
Interaction: 3883/20016 Out of bounds for computation -> nan[0.001,0.5]
3884
3885
Interaction: 3886/20016 Out of bounds for computation -> 2.48827[0.001,0.5]
Interaction: 3887/20016 Out of bounds for computation -> 0.506722[0.001,0.5]
Interaction: 3888/20016 Out of bounds for computation -> 1.57038[0.001,0.5]
3889
3890
Interaction: 3891/20016 Out of bounds for computation -> 0.592823[0.001,0.5]
Interaction: 3892/20016 Out of bounds for computation -> 1.44049[0.001,0.5]
3893
3894
3895
3896
3897
3898
3899
Interaction: 3900/20016 Out of bounds for computation -> nan[0.001,0.5]
3901
3902
3903
3904
3905
3906
Interaction: 3907/20016 Out of bounds for computation -> 1.0748[0.001,0.5]
Interaction: 3908/20016 Out of bounds for computation -> 1.44911[0.001,0.5]
3909
Interaction: 3910/20016 Out of bounds for computation -> 0.507015[0.001,0.5]
3911
3912
3913
3914
3915
3916
Interaction: 3917/20016 Out of bounds for computation -> nan[0.001,0.5]
3918
Interaction: 3919/20016 Out of bounds for computation -> nan[0.001,0.5]
3920
3921
Interaction: 3922/20016 Out of bounds for computation -> 1.65973[0.001,0.5]
3923
Interaction: 3924/20016 Out of bounds for computation -> 0.593179[0.001,0.5]
3925
Interaction: 3926/20016 Out of bounds for computation -> 0.739652[0.001,0.5]
3927
3928
3929
Interaction: 3930/20016 Out of bounds for computation -> 0.619095[0.001,0.5]
3931
Interaction: 3932/20016 Out of bounds for computation -> 0.731333[0.001,0.5]
3933
3934
Interaction: 3935/20016 Out of bounds for computation -> 1.88722[0.001,0.5]
Interaction: 3936/20016 Out of bounds for computation -> 0.926408[0.001,0.5]
Interaction: 3937/20016 Out of bounds for computation -> 1.68615[0.001,0.5]
3938
Interaction: 3939/20016 Out of bounds for computation -> 0.943999[0.001,0.5]
3940
Interaction: 3941/20016 Out of bounds for computation -> 0.730446[0.001,0.5]
Interaction: 3942/20016 Out of bounds for computation -> 0.771826[0.001,0.5]
Interaction: 3943/20016 Out of bounds for computation -> 0.73731[0.001,0.5]
Interaction: 3944/20016 Out of bounds for computation -> 1.75572[0.001,0.5]
Interaction: 3945/20016 Out of bounds for computation -> 0.953098[0.001,0.5]
3946
3947
3948
3949
Interaction: 3950/20016 Out of bounds for computation -> 0.579378[0.001,0.5]
Interaction: 3951/20016 Out of bounds for computation -> 0.552568[0.001,0.5]
3952
Interaction: 3953/20016 Out of bounds for computation -> 0.520615[0.001,0.5]
3954
Interaction: 3955/20016 Out of bounds for computation -> 1.65479[0.001,0.5]
Interaction: 3956/20016 Out of bounds for computation -> nan[0.001,0.5]
3957
3958
Interaction: 3959/20016 Out of bounds for computation -> 2.21097[0.001,0.5]
Interaction: 3960/20016 Out of bounds for computation -> 1.45893[0.001,0.5]
Interaction: 3961/20016 Out of bounds for computation -> 1.42388[0.001,0.5]
Interaction: 3962/20016 Out of bounds for computation -> 1.2115[0.001,0.5]
3963
Interaction: 3964/20016 Out of bounds for computation -> 0.573144[0.001,0.5]
3965
3966
3967
Interaction: 3968/20016 Out of bounds for computation -> 0.673878[0.001,0.5]
3969
3970
Interaction: 3971/20016 Out of bounds for computation -> 0.619706[0.001,0.5]
Interaction: 3972/20016 Out of bounds for computation -> 1.41507[0.001,0.5]
Interaction: 3973/20016 Out of bounds for computation -> 0.590427[0.001,0.5]
3974
Interaction: 3975/20016 Out of bounds for computation -> nan[0.001,0.5]
3976
Interaction: 3977/20016 Out of bounds for computation -> 1.71313[0.001,0.5]
3978
Interaction: 3979/20016 Out of bounds for computation -> 1.52482[0.001,0.5]
3980
3981
Interaction: 3982/20016 Out of bounds for computation -> 0.54012[0.001,0.5]
3983
3984
3985
3986
Interaction: 3987/20016 Out of bounds for computation -> 0.576014[0.001,0.5]
Interaction: 3988/20016 Out of bounds for computation -> 1.80992[0.001,0.5]
Interaction: 3989/20016 Out of bounds for computation -> 1.96988[0.001,0.5]
3990
Interaction: 3991/20016 Out of bounds for computation -> 1.65943[0.001,0.5]
Interaction: 3992/20016 Out of bounds for computation -> nan[0.001,0.5]
3993
3994
3995
3996
Interaction: 3997/20016 Out of bounds for computation -> 0.843012[0.001,0.5]
3998
Interaction: 3999/20016 Out of bounds for computation -> nan[0.001,0.5]
4000
4001
4002
4003
4004
Interaction: 4005/20016 Out of bounds for computation -> 1.435[0.001,0.5]
Interaction: 4006/20016 Out of bounds for computation -> 1.33897[0.001,0.5]
Interaction: 4007/20016 Out of bounds for computation -> 0.75512[0.001,0.5]
Interaction: 4008/20016 Out of bounds for computation -> 1.29487[0.001,0.5]
4009
Interaction: 4010/20016 Out of bounds for computation -> 0.631291[0.001,0.5]
4011
4012
4013
4014
4015
Interaction: 4016/20016 Out of bounds for computation -> 1.32087[0.001,0.5]
4017
4018
Interaction: 4019/20016 Out of bounds for computation -> 2.83204[0.001,0.5]
Interaction: 4020/20016 Out of bounds for computation -> 2.05445[0.001,0.5]
4021
Interaction: 4022/20016 Out of bounds for computation -> 1.65705[0.001,0.5]
Interaction: 4023/20016 Out of bounds for computation -> 1.63991[0.001,0.5]
4024
4025
4026
4027
4028
4029
4030
Interaction: 4031/20016 Out of bounds for computation -> 0.86131[0.001,0.5]
4032
4033
Interaction: 4034/20016 Out of bounds for computation -> 1.15366[0.001,0.5]
Interaction: 4035/20016 Out of bounds for computation -> 0.717747[0.001,0.5]
4036
4037
Interaction: 4038/20016 Out of bounds for computation -> 1.29712[0.001,0.5]
4039
4040
4041
Interaction: 4042/20016 Out of bounds for computation -> 0.56551[0.001,0.5]
Interaction: 4043/20016 Out of bounds for computation -> 1.07319[0.001,0.5]
4044
Interaction: 4045/20016 Out of bounds for computation -> 1.0788[0.001,0.5]
4046
Interaction: 4047/20016 Out of bounds for computation -> 1.36156[0.001,0.5]
Interaction: 4048/20016 Out of bounds for computation -> 0.587758[0.001,0.5]
4049
4050
4051
4052
Interaction: 4053/20016 Out of bounds for computation -> 1.3763[0.001,0.5]
Interaction: 4054/20016 Out of bounds for computation -> 1.6921[0.001,0.5]
Interaction: 4055/20016 Out of bounds for computation -> 0.633438[0.001,0.5]
Interaction: 4056/20016 Out of bounds for computation -> 1.29726[0.001,0.5]
Interaction: 4057/20016 Out of bounds for computation -> 0.581332[0.001,0.5]
Interaction: 4058/20016 Out of bounds for computation -> 1.36507[0.001,0.5]
4059
4060
Interaction: 4061/20016 Out of bounds for computation -> 1.49856[0.001,0.5]
Interaction: 4062/20016 Out of bounds for computation -> 0.780988[0.001,0.5]
Interaction: 4063/20016 Out of bounds for computation -> 0.580016[0.001,0.5]
Interaction: 4064/20016 Out of bounds for computation -> 1.98814[0.001,0.5]
4065
4066
Interaction: 4067/20016 Out of bounds for computation -> 0.667153[0.001,0.5]
Interaction: 4068/20016 Out of bounds for computation -> 1.41194[0.001,0.5]
4069
4070
4071
Interaction: 4072/20016 Out of bounds for computation -> nan[0.001,0.5]
4073
4074
Interaction: 4075/20016 Out of bounds for computation -> 0.594748[0.001,0.5]
4076
Interaction: 4077/20016 Out of bounds for computation -> 0.610833[0.001,0.5]
4078
4079
Interaction: 4080/20016 Out of bounds for computation -> 0.799633[0.001,0.5]
Interaction: 4081/20016 Out of bounds for computation -> 1.62619[0.001,0.5]
4082
4083
Interaction: 4084/20016 Out of bounds for computation -> 0.740065[0.001,0.5]
Interaction: 4085/20016 Out of bounds for computation -> 0.72209[0.001,0.5]
4086
Interaction: 4087/20016 Out of bounds for computation -> 1.01986[0.001,0.5]
4088
4089
4090
4091
4092
4093
Interaction: 4094/20016 Out of bounds for computation -> 1.96788[0.001,0.5]
4095
4096
4097
Interaction: 4098/20016 Out of bounds for computation -> 1.94896[0.001,0.5]
4099
Interaction: 4100/20016 Out of bounds for computation -> 2.73943[0.001,0.5]
Interaction: 4101/20016 Out of bounds for computation -> 0.93486[0.001,0.5]
4102
Interaction: 4103/20016 Out of bounds for computation -> 0.672075[0.001,0.5]
Interaction: 4104/20016 Out of bounds for computation -> 2.47904[0.001,0.5]
Interaction: 4105/20016 Out of bounds for computation -> 0.784508[0.001,0.5]
4106
Interaction: 4107/20016 Out of bounds for computation -> 0.600262[0.001,0.5]
4108
4109
4110
Interaction: 4111/20016 Out of bounds for computation -> nan[0.001,0.5]
4112
Interaction: 4113/20016 Out of bounds for computation -> 1.715[0.001,0.5]
Interaction: 4114/20016 Out of bounds for computation -> 1.37938[0.001,0.5]
Interaction: 4115/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 4116/20016 Out of bounds for computation -> 2.81063[0.001,0.5]
4117
Interaction: 4118/20016 Out of bounds for computation -> 0.638858[0.001,0.5]
4119
4120
4121
4122
Interaction: 4123/20016 Out of bounds for computation -> 1.76327[0.001,0.5]
4124
4125
Interaction: 4126/20016 Out of bounds for computation -> 1.19984[0.001,0.5]
Interaction: 4127/20016 Out of bounds for computation -> 0.513669[0.001,0.5]
4128
4129
4130
Interaction: 4131/20016 Out of bounds for computation -> 1.21887[0.001,0.5]
Interaction: 4132/20016 Out of bounds for computation -> 1.88053[0.001,0.5]
4133
4134
4135
Interaction: 4136/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 4137/20016 Out of bounds for computation -> 0.609555[0.001,0.5]
4138
Interaction: 4139/20016 Out of bounds for computation -> 0.738123[0.001,0.5]
Interaction: 4140/20016 Out of bounds for computation -> 1.38122[0.001,0.5]
Interaction: 4141/20016 Out of bounds for computation -> 0.510635[0.001,0.5]
4142
4143
Interaction: 4144/20016 Out of bounds for computation -> 1.2789[0.001,0.5]
Interaction: 4145/20016 Out of bounds for computation -> 0.753932[0.001,0.5]
4146
Interaction: 4147/20016 Out of bounds for computation -> 0.664243[0.001,0.5]
Interaction: 4148/20016 Out of bounds for computation -> 0.725312[0.001,0.5]
Interaction: 4149/20016 Out of bounds for computation -> 0.724911[0.001,0.5]
Interaction: 4150/20016 Out of bounds for computation -> 0.598607[0.001,0.5]
4151
4152
4153
Interaction: 4154/20016 Out of bounds for computation -> 0.843017[0.001,0.5]
4155
Interaction: 4156/20016 Out of bounds for computation -> nan[0.001,0.5]
4157
4158
Interaction: 4159/20016 Out of bounds for computation -> 1.13358[0.001,0.5]
Interaction: 4160/20016 Out of bounds for computation -> nan[0.001,0.5]
4161
4162
4163
4164
4165
4166
4167
4168
4169
Interaction: 4170/20016 Out of bounds for computation -> 1.07436[0.001,0.5]
Interaction: 4171/20016 Out of bounds for computation -> 1.28093[0.001,0.5]
4172
4173
Interaction: 4174/20016 Out of bounds for computation -> 0.982906[0.001,0.5]
Interaction: 4175/20016 Out of bounds for computation -> 1.09654[0.001,0.5]
Interaction: 4176/20016 Out of bounds for computation -> 2.30227[0.001,0.5]
4177
Interaction: 4178/20016 Out of bounds for computation -> 1.95349[0.001,0.5]
4179
4180
Interaction: 4181/20016 Out of bounds for computation -> 0.61137[0.001,0.5]
4182
Interaction: 4183/20016 Out of bounds for computation -> 0.62504[0.001,0.5]
4184
4185
4186
4187
4188
Interaction: 4189/20016 Out of bounds for computation -> 1.84098[0.001,0.5]
Interaction: 4190/20016 Out of bounds for computation -> 0.557503[0.001,0.5]
Interaction: 4191/20016 Out of bounds for computation -> 1.906[0.001,0.5]
4192
Interaction: 4193/20016 Out of bounds for computation -> 0.706398[0.001,0.5]
Interaction: 4194/20016 Out of bounds for computation -> 1.59465[0.001,0.5]
Interaction: 4195/20016 Out of bounds for computation -> 2.14513[0.001,0.5]
4196
4197
4198
Interaction: 4199/20016 Out of bounds for computation -> 0.749484[0.001,0.5]
4200
Interaction: 4201/20016 Out of bounds for computation -> 0.628402[0.001,0.5]
Interaction: 4202/20016 Out of bounds for computation -> 1.29763[0.001,0.5]
Interaction: 4203/20016 Out of bounds for computation -> 1.422[0.001,0.5]
Interaction: 4204/20016 Out of bounds for computation -> 1.384[0.001,0.5]
4205
4206
Interaction: 4207/20016 Out of bounds for computation -> nan[0.001,0.5]
4208
4209
Interaction: 4210/20016 Out of bounds for computation -> 0.702692[0.001,0.5]
Interaction: 4211/20016 Out of bounds for computation -> 2.23707[0.001,0.5]
Interaction: 4212/20016 Out of bounds for computation -> 0.822134[0.001,0.5]
Interaction: 4213/20016 Out of bounds for computation -> 0.546658[0.001,0.5]
4214
Interaction: 4215/20016 Out of bounds for computation -> 0.518133[0.001,0.5]
Interaction: 4216/20016 Out of bounds for computation -> 1.39086[0.001,0.5]
Interaction: 4217/20016 Out of bounds for computation -> 1.36853[0.001,0.5]
Interaction: 4218/20016 Out of bounds for computation -> 1.01854[0.001,0.5]
Interaction: 4219/20016 Out of bounds for computation -> 1.00549[0.001,0.5]
4220
4221
4222
4223
4224
Interaction: 4225/20016 Out of bounds for computation -> 0.605793[0.001,0.5]
4226
Interaction: 4227/20016 Out of bounds for computation -> 1.4552[0.001,0.5]
4228
Interaction: 4229/20016 Out of bounds for computation -> 0.873933[0.001,0.5]
Interaction: 4230/20016 Out of bounds for computation -> 0.828489[0.001,0.5]
4231
4232
4233
Interaction: 4234/20016 Out of bounds for computation -> 2.3082[0.001,0.5]
4235
4236
4237
Interaction: 4238/20016 Out of bounds for computation -> 0.748245[0.001,0.5]
Interaction: 4239/20016 Out of bounds for computation -> 0.609565[0.001,0.5]
4240
4241
4242
Interaction: 4243/20016 Out of bounds for computation -> 0.632694[0.001,0.5]
4244
4245
Interaction: 4246/20016 Out of bounds for computation -> 0.518413[0.001,0.5]
4247
Interaction: 4248/20016 Out of bounds for computation -> 0.57737[0.001,0.5]
4249
4250
Interaction: 4251/20016 Out of bounds for computation -> 0.593793[0.001,0.5]
4252
4253
4254
Interaction: 4255/20016 Out of bounds for computation -> 2.15787[0.001,0.5]
4256
Interaction: 4257/20016 Out of bounds for computation -> 0.700212[0.001,0.5]
Interaction: 4258/20016 Out of bounds for computation -> 0.541591[0.001,0.5]
4259
4260
Interaction: 4261/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 4262/20016 Out of bounds for computation -> 0.632985[0.001,0.5]
4263
Interaction: 4264/20016 Out of bounds for computation -> 1.23138[0.001,0.5]
4265
4266
Interaction: 4267/20016 Out of bounds for computation -> 0.502083[0.001,0.5]
Interaction: 4268/20016 Out of bounds for computation -> 0.526497[0.001,0.5]
Interaction: 4269/20016 Out of bounds for computation -> 1.43184[0.001,0.5]
4270
4271
Interaction: 4272/20016 Out of bounds for computation -> 1.57741[0.001,0.5]
4273
4274
4275
4276
4277
4278
Interaction: 4279/20016 Out of bounds for computation -> 1.44049[0.001,0.5]
Interaction: 4280/20016 Out of bounds for computation -> 1.57206[0.001,0.5]
4281
4282
4283
4284
Interaction: 4285/20016 Out of bounds for computation -> 1.64028[0.001,0.5]
Interaction: 4286/20016 Out of bounds for computation -> 1.01389[0.001,0.5]
Interaction: 4287/20016 Out of bounds for computation -> 0.635073[0.001,0.5]
Interaction: 4288/20016 Out of bounds for computation -> 1.44672[0.001,0.5]
Interaction: 4289/20016 Out of bounds for computation -> 0.511344[0.001,0.5]
4290
4291
4292
Interaction: 4293/20016 Out of bounds for computation -> 0.787878[0.001,0.5]
Interaction: 4294/20016 Out of bounds for computation -> 1.86054[0.001,0.5]
Interaction: 4295/20016 Out of bounds for computation -> 1.42954[0.001,0.5]
Interaction: 4296/20016 Out of bounds for computation -> 2.19789[0.001,0.5]
4297
Interaction: 4298/20016 Out of bounds for computation -> 0.51348[0.001,0.5]
Interaction: 4299/20016 Out of bounds for computation -> 0.667008[0.001,0.5]
Interaction: 4300/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 4301/20016 Out of bounds for computation -> 0.808478[0.001,0.5]
4302
Interaction: 4303/20016 Out of bounds for computation -> 2.69278[0.001,0.5]
4304
Interaction: 4305/20016 Out of bounds for computation -> 1.37832[0.001,0.5]
4306
4307
4308
4309
Interaction: 4310/20016 Out of bounds for computation -> 1.45579[0.001,0.5]
4311
4312
4313
Interaction: 4314/20016 Out of bounds for computation -> 2.81[0.001,0.5]
4315
Interaction: 4316/20016 Out of bounds for computation -> 0.81837[0.001,0.5]
Interaction: 4317/20016 Out of bounds for computation -> 2.89348[0.001,0.5]
4318
Interaction: 4319/20016 Out of bounds for computation -> 1.39359[0.001,0.5]
4320
Interaction: 4321/20016 Out of bounds for computation -> 0.634207[0.001,0.5]
Interaction: 4322/20016 Out of bounds for computation -> 0.562255[0.001,0.5]
4323
Interaction: 4324/20016 Out of bounds for computation -> 1.71063[0.001,0.5]
4325
4326
Interaction: 4327/20016 Out of bounds for computation -> 1.93357[0.001,0.5]
4328
Interaction: 4329/20016 Out of bounds for computation -> 0.719621[0.001,0.5]
Interaction: 4330/20016 Out of bounds for computation -> 0.815984[0.001,0.5]
Interaction: 4331/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 4332/20016 Out of bounds for computation -> 0.672818[0.001,0.5]
4333
4334
4335
4336
4337
4338
Interaction: 4339/20016 Out of bounds for computation -> 0.603869[0.001,0.5]
4340
4341
4342
Interaction: 4343/20016 Out of bounds for computation -> 1.79652[0.001,0.5]
Interaction: 4344/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 4345/20016 Out of bounds for computation -> 0.913398[0.001,0.5]
4346
4347
4348
Interaction: 4349/20016 Out of bounds for computation -> 0.674979[0.001,0.5]
4350
4351
Interaction: 4352/20016 Out of bounds for computation -> 1.67559[0.001,0.5]
4353
Interaction: 4354/20016 Out of bounds for computation -> 0.665624[0.001,0.5]
4355
4356
4357
4358
Interaction: 4359/20016 Out of bounds for computation -> 1.80335[0.001,0.5]
4360
4361
Interaction: 4362/20016 Out of bounds for computation -> 0.764424[0.001,0.5]
4363
Interaction: 4364/20016 Out of bounds for computation -> 2.19464[0.001,0.5]
Interaction: 4365/20016 Out of bounds for computation -> 0.661001[0.001,0.5]
Interaction: 4366/20016 Out of bounds for computation -> 0.587576[0.001,0.5]
4367
Interaction: 4368/20016 Out of bounds for computation -> 2.63631[0.001,0.5]
Interaction: 4369/20016 Out of bounds for computation -> 0.777303[0.001,0.5]
Interaction: 4370/20016 Out of bounds for computation -> 0.699002[0.001,0.5]
Interaction: 4371/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 4372/20016 Out of bounds for computation -> 1.72743[0.001,0.5]
4373
4374
4375
Interaction: 4376/20016 Out of bounds for computation -> 1.44539[0.001,0.5]
Interaction: 4377/20016 Out of bounds for computation -> 1.5793[0.001,0.5]
Interaction: 4378/20016 Out of bounds for computation -> 0.577965[0.001,0.5]
Interaction: 4379/20016 Out of bounds for computation -> 0.570158[0.001,0.5]
4380
4381
4382
Interaction: 4383/20016 Out of bounds for computation -> 0.529947[0.001,0.5]
4384
4385
4386
Interaction: 4387/20016 Out of bounds for computation -> 1.44591[0.001,0.5]
4388
4389
4390
4391
Interaction: 4392/20016 Out of bounds for computation -> 2.4619[0.001,0.5]
4393
4394
4395
4396
Interaction: 4397/20016 Out of bounds for computation -> 1.42114[0.001,0.5]
4398
Interaction: 4399/20016 Out of bounds for computation -> 1.45405[0.001,0.5]
4400
4401
4402
4403
4404
4405
Interaction: 4406/20016 Out of bounds for computation -> 0.601473[0.001,0.5]
Interaction: 4407/20016 Out of bounds for computation -> 2.33505[0.001,0.5]
Interaction: 4408/20016 Out of bounds for computation -> 0.565144[0.001,0.5]
Interaction: 4409/20016 Out of bounds for computation -> 1.46831[0.001,0.5]
Interaction: 4410/20016 Out of bounds for computation -> 0.68409[0.001,0.5]
Interaction: 4411/20016 Out of bounds for computation -> 0.568968[0.001,0.5]
4412
Interaction: 4413/20016 Out of bounds for computation -> 1.16654[0.001,0.5]
Interaction: 4414/20016 Out of bounds for computation -> 1.73899[0.001,0.5]
Interaction: 4415/20016 Out of bounds for computation -> 1.4027[0.001,0.5]
4416
Interaction: 4417/20016 Out of bounds for computation -> 1.52302[0.001,0.5]
4418
4419
4420
4421
4422
Interaction: 4423/20016 Out of bounds for computation -> 0.679112[0.001,0.5]
4424
Interaction: 4425/20016 Out of bounds for computation -> 0.7214[0.001,0.5]
4426
4427
4428
Interaction: 4429/20016 Out of bounds for computation -> 1.27248[0.001,0.5]
Interaction: 4430/20016 Out of bounds for computation -> 1.58133[0.001,0.5]
4431
Interaction: 4432/20016 Out of bounds for computation -> 0.689004[0.001,0.5]
4433
4434
4435
4436
4437
4438
4439
4440
4441
Interaction: 4442/20016 Out of bounds for computation -> 0.671644[0.001,0.5]
Interaction: 4443/20016 Out of bounds for computation -> 1.35382[0.001,0.5]
Interaction: 4444/20016 Out of bounds for computation -> 1.38196[0.001,0.5]
4445
4446
4447
Interaction: 4448/20016 Out of bounds for computation -> 2.59546[0.001,0.5]
Interaction: 4449/20016 Out of bounds for computation -> 1.38276[0.001,0.5]
Interaction: 4450/20016 Out of bounds for computation -> 2.04236[0.001,0.5]
4451
4452
4453
Interaction: 4454/20016 Out of bounds for computation -> nan[0.001,0.5]
4455
Interaction: 4456/20016 Out of bounds for computation -> nan[0.001,0.5]
4457
Interaction: 4458/20016 Out of bounds for computation -> 2.25367[0.001,0.5]
4459
Interaction: 4460/20016 Out of bounds for computation -> 0.622636[0.001,0.5]
Interaction: 4461/20016 Out of bounds for computation -> 0.593973[0.001,0.5]
Interaction: 4462/20016 Out of bounds for computation -> 0.543882[0.001,0.5]
4463
4464
4465
Interaction: 4466/20016 Out of bounds for computation -> 1.46067[0.001,0.5]
Interaction: 4467/20016 Out of bounds for computation -> 2.77819[0.001,0.5]
4468
4469
4470
4471
4472
4473
4474
4475
Interaction: 4476/20016 Out of bounds for computation -> 1.37363[0.001,0.5]
Interaction: 4477/20016 Out of bounds for computation -> 0.503634[0.001,0.5]
4478
4479
Interaction: 4480/20016 Out of bounds for computation -> 2.03446[0.001,0.5]
Interaction: 4481/20016 Out of bounds for computation -> 2.38337[0.001,0.5]
Interaction: 4482/20016 Out of bounds for computation -> 0.539419[0.001,0.5]
Interaction: 4483/20016 Out of bounds for computation -> 1.36583[0.001,0.5]
Interaction: 4484/20016 Out of bounds for computation -> 1.96117[0.001,0.5]
Interaction: 4485/20016 Out of bounds for computation -> 1.51316[0.001,0.5]
Interaction: 4486/20016 Out of bounds for computation -> 0.605687[0.001,0.5]
Interaction: 4487/20016 Out of bounds for computation -> 0.553005[0.001,0.5]
Interaction: 4488/20016 Out of bounds for computation -> 0.666167[0.001,0.5]
4489
Interaction: 4490/20016 Out of bounds for computation -> nan[0.001,0.5]
4491
Interaction: 4492/20016 Out of bounds for computation -> 0.56983[0.001,0.5]
Interaction: 4493/20016 Out of bounds for computation -> 0.738699[0.001,0.5]
Interaction: 4494/20016 Out of bounds for computation -> nan[0.001,0.5]
4495
Interaction: 4496/20016 Out of bounds for computation -> 2.12084[0.001,0.5]
Interaction: 4497/20016 Out of bounds for computation -> 2.16405[0.001,0.5]
4498
Interaction: 4499/20016 Out of bounds for computation -> 2.01558[0.001,0.5]
Interaction: 4500/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 4501/20016 Out of bounds for computation -> 1.17791[0.001,0.5]
Interaction: 4502/20016 Out of bounds for computation -> 0.912542[0.001,0.5]
Interaction: 4503/20016 Out of bounds for computation -> 0.99833[0.001,0.5]
4504
Interaction: 4505/20016 Out of bounds for computation -> 0.823868[0.001,0.5]
4506
Interaction: 4507/20016 Out of bounds for computation -> 0.728657[0.001,0.5]
4508
Interaction: 4509/20016 Out of bounds for computation -> 0.552307[0.001,0.5]
4510
Interaction: 4511/20016 Out of bounds for computation -> 1.41344[0.001,0.5]
4512
Interaction: 4513/20016 Out of bounds for computation -> 1.70083[0.001,0.5]
Interaction: 4514/20016 Out of bounds for computation -> 0.50965[0.001,0.5]
Interaction: 4515/20016 Out of bounds for computation -> 1.75011[0.001,0.5]
4516
Interaction: 4517/20016 Out of bounds for computation -> 0.953257[0.001,0.5]
Interaction: 4518/20016 Out of bounds for computation -> 1.43386[0.001,0.5]
Interaction: 4519/20016 Out of bounds for computation -> 0.947311[0.001,0.5]
4520
Interaction: 4521/20016 Out of bounds for computation -> 1.04491[0.001,0.5]
4522
Interaction: 4523/20016 Out of bounds for computation -> 2.93138[0.001,0.5]
Interaction: 4524/20016 Out of bounds for computation -> 0.726572[0.001,0.5]
Interaction: 4525/20016 Out of bounds for computation -> 0.861632[0.001,0.5]
4526
4527
Interaction: 4528/20016 Out of bounds for computation -> 0.557683[0.001,0.5]
4529
4530
4531
4532
Interaction: 4533/20016 Out of bounds for computation -> 0.680734[0.001,0.5]
Interaction: 4534/20016 Out of bounds for computation -> 2.02542[0.001,0.5]
4535
Interaction: 4536/20016 Out of bounds for computation -> 1.69597[0.001,0.5]
4537
4538
Interaction: 4539/20016 Out of bounds for computation -> 1.74276[0.001,0.5]
4540
4541
4542
Interaction: 4543/20016 Out of bounds for computation -> 0.693744[0.001,0.5]
4544
4545
4546
4547
4548
4549
4550
4551
4552
Interaction: 4553/20016 Out of bounds for computation -> 0.854993[0.001,0.5]
Interaction: 4554/20016 Out of bounds for computation -> 0.760756[0.001,0.5]
Interaction: 4555/20016 Out of bounds for computation -> 2.20574[0.001,0.5]
Interaction: 4556/20016 Out of bounds for computation -> 0.507383[0.001,0.5]
Interaction: 4557/20016 Out of bounds for computation -> 0.600676[0.001,0.5]
Interaction: 4558/20016 Out of bounds for computation -> 0.845187[0.001,0.5]
4559
Interaction: 4560/20016 Out of bounds for computation -> 0.852621[0.001,0.5]
Interaction: 4561/20016 Out of bounds for computation -> 0.720189[0.001,0.5]
4562
Interaction: 4563/20016 Out of bounds for computation -> 0.925457[0.001,0.5]
Interaction: 4564/20016 Out of bounds for computation -> 1.19806[0.001,0.5]
4565
4566
Interaction: 4567/20016 Out of bounds for computation -> 1.90048[0.001,0.5]
Interaction: 4568/20016 Out of bounds for computation -> 1.12844[0.001,0.5]
Interaction: 4569/20016 Out of bounds for computation -> 0.633492[0.001,0.5]
Interaction: 4570/20016 Out of bounds for computation -> 0.712552[0.001,0.5]
4571
Interaction: 4572/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 4573/20016 Out of bounds for computation -> 0.58254[0.001,0.5]
Interaction: 4574/20016 Out of bounds for computation -> 1.42319[0.001,0.5]
Interaction: 4575/20016 Out of bounds for computation -> 2.2439[0.001,0.5]
Interaction: 4576/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 4577/20016 Out of bounds for computation -> 1.11228[0.001,0.5]
Interaction: 4578/20016 Out of bounds for computation -> 0.68276[0.001,0.5]
4579
Interaction: 4580/20016 Out of bounds for computation -> 2.10543[0.001,0.5]
4581
Interaction: 4582/20016 Out of bounds for computation -> 1.09787[0.001,0.5]
4583
4584
4585
4586
Interaction: 4587/20016 Out of bounds for computation -> 1.3504[0.001,0.5]
4588
Interaction: 4589/20016 Out of bounds for computation -> 2.80839[0.001,0.5]
Interaction: 4590/20016 Out of bounds for computation -> 1.50284[0.001,0.5]
4591
Interaction: 4592/20016 Out of bounds for computation -> 0.703148[0.001,0.5]
Interaction: 4593/20016 Out of bounds for computation -> 0.668847[0.001,0.5]
4594
Interaction: 4595/20016 Out of bounds for computation -> 0.710747[0.001,0.5]
Interaction: 4596/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 4597/20016 Out of bounds for computation -> 0.678489[0.001,0.5]
Interaction: 4598/20016 Out of bounds for computation -> 1.59039[0.001,0.5]
4599
4600
Interaction: 4601/20016 Out of bounds for computation -> 0.60155[0.001,0.5]
Interaction: 4602/20016 Out of bounds for computation -> 1.79904[0.001,0.5]
Interaction: 4603/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 4604/20016 Out of bounds for computation -> 0.685188[0.001,0.5]
4605
Interaction: 4606/20016 Out of bounds for computation -> nan[0.001,0.5]
4607
Interaction: 4608/20016 Out of bounds for computation -> 0.795692[0.001,0.5]
Interaction: 4609/20016 Out of bounds for computation -> 1.53936[0.001,0.5]
4610
4611
4612
4613
4614
4615
4616
Interaction: 4617/20016 Out of bounds for computation -> 0.683933[0.001,0.5]
Interaction: 4618/20016 Out of bounds for computation -> nan[0.001,0.5]
4619
Interaction: 4620/20016 Out of bounds for computation -> 1.54588[0.001,0.5]
4621
4622
4623
4624
4625
4626
4627
4628
4629
Interaction: 4630/20016 Out of bounds for computation -> 1.52325[0.001,0.5]
4631
4632
4633
Interaction: 4634/20016 Out of bounds for computation -> 0.783922[0.001,0.5]
4635
Interaction: 4636/20016 Out of bounds for computation -> 1.38645[0.001,0.5]
4637
4638
Interaction: 4639/20016 Out of bounds for computation -> 1.18938[0.001,0.5]
4640
4641
4642
Interaction: 4643/20016 Out of bounds for computation -> 1.90989[0.001,0.5]
Interaction: 4644/20016 Out of bounds for computation -> 0.501911[0.001,0.5]
4645
4646
4647
Interaction: 4648/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 4649/20016 Out of bounds for computation -> 0.930922[0.001,0.5]
Interaction: 4650/20016 Out of bounds for computation -> nan[0.001,0.5]
4651
4652
4653
Interaction: 4654/20016 Out of bounds for computation -> nan[0.001,0.5]
4655
Interaction: 4656/20016 Out of bounds for computation -> 0.535284[0.001,0.5]
4657
4658
4659
Interaction: 4660/20016 Out of bounds for computation -> 1.50205[0.001,0.5]
Interaction: 4661/20016 Out of bounds for computation -> 1.41403[0.001,0.5]
4662
4663
4664
4665
4666
4667
Interaction: 4668/20016 Out of bounds for computation -> 1.55452[0.001,0.5]
4669
4670
Interaction: 4671/20016 Out of bounds for computation -> 1.16652[0.001,0.5]
4672
Interaction: 4673/20016 Out of bounds for computation -> 0.592447[0.001,0.5]
4674
Interaction: 4675/20016 Out of bounds for computation -> 1.4055[0.001,0.5]
4676
Interaction: 4677/20016 Out of bounds for computation -> 0.705378[0.001,0.5]
4678
Interaction: 4679/20016 Out of bounds for computation -> 0.590316[0.001,0.5]
4680
Interaction: 4681/20016 Out of bounds for computation -> 0.666499[0.001,0.5]
Interaction: 4682/20016 Out of bounds for computation -> 1.36704[0.001,0.5]
Interaction: 4683/20016 Out of bounds for computation -> 0.595381[0.001,0.5]
Interaction: 4684/20016 Out of bounds for computation -> 0.912127[0.001,0.5]
4685
Interaction: 4686/20016 Out of bounds for computation -> 1.02017[0.001,0.5]
Interaction: 4687/20016 Out of bounds for computation -> 2.17014[0.001,0.5]
4688
4689
4690
Interaction: 4691/20016 Out of bounds for computation -> 2.64544[0.001,0.5]
4692
4693
Interaction: 4694/20016 Out of bounds for computation -> 0.789489[0.001,0.5]
Interaction: 4695/20016 Out of bounds for computation -> 1.29759[0.001,0.5]
4696
4697
Interaction: 4698/20016 Out of bounds for computation -> 0.767123[0.001,0.5]
Interaction: 4699/20016 Out of bounds for computation -> 0.555395[0.001,0.5]
4700
Interaction: 4701/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 4702/20016 Out of bounds for computation -> 1.40184[0.001,0.5]
Interaction: 4703/20016 Out of bounds for computation -> 0.54069[0.001,0.5]
4704
Interaction: 4705/20016 Out of bounds for computation -> 0.618877[0.001,0.5]
Interaction: 4706/20016 Out of bounds for computation -> 0.557665[0.001,0.5]
Interaction: 4707/20016 Out of bounds for computation -> 1.41444[0.001,0.5]
4708
4709
4710
4711
4712
Interaction: 4713/20016 Out of bounds for computation -> 1.44706[0.001,0.5]
4714
4715
Interaction: 4716/20016 Out of bounds for computation -> 0.762131[0.001,0.5]
Interaction: 4717/20016 Out of bounds for computation -> 0.634423[0.001,0.5]
4718
Interaction: 4719/20016 Out of bounds for computation -> 2.56883[0.001,0.5]
4720
4721
4722
4723
4724
4725
Interaction: 4726/20016 Out of bounds for computation -> 1.93531[0.001,0.5]
Interaction: 4727/20016 Out of bounds for computation -> 0.55768[0.001,0.5]
4728
Interaction: 4729/20016 Out of bounds for computation -> 0.836508[0.001,0.5]
Interaction: 4730/20016 Out of bounds for computation -> 1.12364[0.001,0.5]
Interaction: 4731/20016 Out of bounds for computation -> 1.41393[0.001,0.5]
4732
Interaction: 4733/20016 Out of bounds for computation -> 1.55893[0.001,0.5]
4734
4735
4736
4737
4738
4739
4740
4741
Interaction: 4742/20016 Out of bounds for computation -> 0.582712[0.001,0.5]
Interaction: 4743/20016 Out of bounds for computation -> 0.705069[0.001,0.5]
4744
Interaction: 4745/20016 Out of bounds for computation -> 1.25844[0.001,0.5]
Interaction: 4746/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 4747/20016 Out of bounds for computation -> 0.563691[0.001,0.5]
Interaction: 4748/20016 Out of bounds for computation -> 2.16578[0.001,0.5]
Interaction: 4749/20016 Out of bounds for computation -> 0.502779[0.001,0.5]
Interaction: 4750/20016 Out of bounds for computation -> 0.522418[0.001,0.5]
4751
Interaction: 4752/20016 Out of bounds for computation -> 0.517487[0.001,0.5]
4753
4754
4755
Interaction: 4756/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 4757/20016 Out of bounds for computation -> 1.42121[0.001,0.5]
4758
4759
Interaction: 4760/20016 Out of bounds for computation -> 0.761592[0.001,0.5]
4761
Interaction: 4762/20016 Out of bounds for computation -> 0.871176[0.001,0.5]
4763
Interaction: 4764/20016 Out of bounds for computation -> 0.549529[0.001,0.5]
4765
4766
4767
4768
Interaction: 4769/20016 Out of bounds for computation -> 0.804188[0.001,0.5]
Interaction: 4770/20016 Out of bounds for computation -> 2.076[0.001,0.5]
Interaction: 4771/20016 Out of bounds for computation -> 1.32874[0.001,0.5]
4772
4773
4774
4775
Interaction: 4776/20016 Out of bounds for computation -> 0.948126[0.001,0.5]
Interaction: 4777/20016 Out of bounds for computation -> 1.63777[0.001,0.5]
4778
4779
4780
Interaction: 4781/20016 Out of bounds for computation -> 0.543179[0.001,0.5]
Interaction: 4782/20016 Out of bounds for computation -> 1.41258[0.001,0.5]
Interaction: 4783/20016 Out of bounds for computation -> 1.10472[0.001,0.5]
Interaction: 4784/20016 Out of bounds for computation -> 2.3392[0.001,0.5]
4785
4786
Interaction: 4787/20016 Out of bounds for computation -> 1.44572[0.001,0.5]
Interaction: 4788/20016 Out of bounds for computation -> 2.4144[0.001,0.5]
4789
4790
Interaction: 4791/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 4792/20016 Out of bounds for computation -> 1.45288[0.001,0.5]
4793
Interaction: 4794/20016 Out of bounds for computation -> 2.11014[0.001,0.5]
4795
Interaction: 4796/20016 Out of bounds for computation -> 0.528856[0.001,0.5]
4797
Interaction: 4798/20016 Out of bounds for computation -> 1.40411[0.001,0.5]
4799
4800
4801
Interaction: 4802/20016 Out of bounds for computation -> 1.53611[0.001,0.5]
4803
4804
Interaction: 4805/20016 Out of bounds for computation -> 1.03411[0.001,0.5]
4806
Interaction: 4807/20016 Out of bounds for computation -> 0.784988[0.001,0.5]
Interaction: 4808/20016 Out of bounds for computation -> 0.735816[0.001,0.5]
Interaction: 4809/20016 Out of bounds for computation -> 2.37959[0.001,0.5]
Interaction: 4810/20016 Out of bounds for computation -> 0.711959[0.001,0.5]
4811
Interaction: 4812/20016 Out of bounds for computation -> 2.69647[0.001,0.5]
4813
Interaction: 4814/20016 Out of bounds for computation -> nan[0.001,0.5]
4815
Interaction: 4816/20016 Out of bounds for computation -> 1.64636[0.001,0.5]
4817
4818
4819
Interaction: 4820/20016 Out of bounds for computation -> 0.711569[0.001,0.5]
4821
4822
4823
Interaction: 4824/20016 Out of bounds for computation -> 1.37107[0.001,0.5]
4825
4826
4827
4828
Interaction: 4829/20016 Out of bounds for computation -> 0.561983[0.001,0.5]
Interaction: 4830/20016 Out of bounds for computation -> 2.50419[0.001,0.5]
4831
Interaction: 4832/20016 Out of bounds for computation -> 0.574036[0.001,0.5]
4833
Interaction: 4834/20016 Out of bounds for computation -> 1.52168[0.001,0.5]
Interaction: 4835/20016 Out of bounds for computation -> 0.635842[0.001,0.5]
4836
4837
4838
4839
Interaction: 4840/20016 Out of bounds for computation -> 1.38814[0.001,0.5]
Interaction: 4841/20016 Out of bounds for computation -> 1.55333[0.001,0.5]
Interaction: 4842/20016 Out of bounds for computation -> 0.955667[0.001,0.5]
4843
4844
4845
Interaction: 4846/20016 Out of bounds for computation -> 0.614314[0.001,0.5]
4847
4848
4849
4850
4851
Interaction: 4852/20016 Out of bounds for computation -> 0.679169[0.001,0.5]
Interaction: 4853/20016 Out of bounds for computation -> 0.798478[0.001,0.5]
4854
4855
4856
4857
Interaction: 4858/20016 Out of bounds for computation -> 0.747598[0.001,0.5]
4859
Interaction: 4860/20016 Out of bounds for computation -> 0.95568[0.001,0.5]
4861
4862
Interaction: 4863/20016 Out of bounds for computation -> 0.587802[0.001,0.5]
4864
4865
Interaction: 4866/20016 Out of bounds for computation -> 2.56656[0.001,0.5]
4867
4868
Interaction: 4869/20016 Out of bounds for computation -> 2.29372[0.001,0.5]
Interaction: 4870/20016 Out of bounds for computation -> 1.60749[0.001,0.5]
4871
4872
Interaction: 4873/20016 Out of bounds for computation -> 1.37977[0.001,0.5]
Interaction: 4874/20016 Out of bounds for computation -> 0.772276[0.001,0.5]
4875
4876
Interaction: 4877/20016 Out of bounds for computation -> 1.06539[0.001,0.5]
4878
Interaction: 4879/20016 Out of bounds for computation -> 0.839311[0.001,0.5]
Interaction: 4880/20016 Out of bounds for computation -> nan[0.001,0.5]
4881
4882
Interaction: 4883/20016 Out of bounds for computation -> 2.34989[0.001,0.5]
Interaction: 4884/20016 Out of bounds for computation -> 1.4527[0.001,0.5]
Interaction: 4885/20016 Out of bounds for computation -> 2.23097[0.001,0.5]
Interaction: 4886/20016 Out of bounds for computation -> 2.40186[0.001,0.5]
4887
4888
Interaction: 4889/20016 Out of bounds for computation -> 0.694805[0.001,0.5]
Interaction: 4890/20016 Out of bounds for computation -> 0.514648[0.001,0.5]
Interaction: 4891/20016 Out of bounds for computation -> 0.658804[0.001,0.5]
Interaction: 4892/20016 Out of bounds for computation -> 1.40012[0.001,0.5]
4893
Interaction: 4894/20016 Out of bounds for computation -> 1.37543[0.001,0.5]
Interaction: 4895/20016 Out of bounds for computation -> 1.22804[0.001,0.5]
4896
4897
Interaction: 4898/20016 Out of bounds for computation -> 2.10047[0.001,0.5]
4899
Interaction: 4900/20016 Out of bounds for computation -> 1.28197[0.001,0.5]
4901
4902
Interaction: 4903/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 4904/20016 Out of bounds for computation -> nan[0.001,0.5]
4905
4906
Interaction: 4907/20016 Out of bounds for computation -> 2.28698[0.001,0.5]
Interaction: 4908/20016 Out of bounds for computation -> 0.632171[0.001,0.5]
4909
Interaction: 4910/20016 Out of bounds for computation -> 2.50297[0.001,0.5]
Interaction: 4911/20016 Out of bounds for computation -> 0.516442[0.001,0.5]
Interaction: 4912/20016 Out of bounds for computation -> 1.57043[0.001,0.5]
Interaction: 4913/20016 Out of bounds for computation -> 0.642963[0.001,0.5]
Interaction: 4914/20016 Out of bounds for computation -> 1.33306[0.001,0.5]
Interaction: 4915/20016 Out of bounds for computation -> 0.6558[0.001,0.5]
4916
Interaction: 4917/20016 Out of bounds for computation -> 0.809698[0.001,0.5]
Interaction: 4918/20016 Out of bounds for computation -> 0.516166[0.001,0.5]
Interaction: 4919/20016 Out of bounds for computation -> 0.843626[0.001,0.5]
4920
Interaction: 4921/20016 Out of bounds for computation -> 2.09874[0.001,0.5]
Interaction: 4922/20016 Out of bounds for computation -> 0.554232[0.001,0.5]
Interaction: 4923/20016 Out of bounds for computation -> 0.658209[0.001,0.5]
Interaction: 4924/20016 Out of bounds for computation -> 0.574738[0.001,0.5]
4925
4926
4927
4928
Interaction: 4929/20016 Out of bounds for computation -> 2.58474[0.001,0.5]
4930
Interaction: 4931/20016 Out of bounds for computation -> 1.77059[0.001,0.5]
Interaction: 4932/20016 Out of bounds for computation -> 1.51766[0.001,0.5]
4933
Interaction: 4934/20016 Out of bounds for computation -> 1.40295[0.001,0.5]
Interaction: 4935/20016 Out of bounds for computation -> 2.07597[0.001,0.5]
Interaction: 4936/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 4937/20016 Out of bounds for computation -> 0.503934[0.001,0.5]
Interaction: 4938/20016 Out of bounds for computation -> 2.72218[0.001,0.5]
4939
4940
Interaction: 4941/20016 Out of bounds for computation -> nan[0.001,0.5]
4942
Interaction: 4943/20016 Out of bounds for computation -> 0.71095[0.001,0.5]
4944
4945
4946
Interaction: 4947/20016 Out of bounds for computation -> 2.24179[0.001,0.5]
4948
4949
4950
4951
4952
Interaction: 4953/20016 Out of bounds for computation -> 0.616402[0.001,0.5]
Interaction: 4954/20016 Out of bounds for computation -> 1.24503[0.001,0.5]
4955
4956
Interaction: 4957/20016 Out of bounds for computation -> 1.04737[0.001,0.5]
Interaction: 4958/20016 Out of bounds for computation -> 2.59794[0.001,0.5]
Interaction: 4959/20016 Out of bounds for computation -> 0.631417[0.001,0.5]
Interaction: 4960/20016 Out of bounds for computation -> nan[0.001,0.5]
4961
4962
Interaction: 4963/20016 Out of bounds for computation -> 2.4551[0.001,0.5]
Interaction: 4964/20016 Out of bounds for computation -> nan[0.001,0.5]
4965
4966
4967
Interaction: 4968/20016 Out of bounds for computation -> 0.888753[0.001,0.5]
Interaction: 4969/20016 Out of bounds for computation -> 1.36484[0.001,0.5]
Interaction: 4970/20016 Out of bounds for computation -> 0.675143[0.001,0.5]
4971
4972
Interaction: 4973/20016 Out of bounds for computation -> nan[0.001,0.5]
4974
4975
Interaction: 4976/20016 Out of bounds for computation -> 1.61651[0.001,0.5]
4977
4978
Interaction: 4979/20016 Out of bounds for computation -> nan[0.001,0.5]
4980
4981
4982
4983
4984
4985
4986
Interaction: 4987/20016 Out of bounds for computation -> 2.26604[0.001,0.5]
4988
4989
Interaction: 4990/20016 Out of bounds for computation -> 0.602607[0.001,0.5]
Interaction: 4991/20016 Out of bounds for computation -> 2.05802[0.001,0.5]
4992
4993
Interaction: 4994/20016 Out of bounds for computation -> 1.12947[0.001,0.5]
4995
4996
4997
4998
4999
Interaction: 5000/20016 Out of bounds for computation -> 0.719944[0.001,0.5]
Interaction: 5001/20016 Out of bounds for computation -> 2.12951[0.001,0.5]
5002
Interaction: 5003/20016 Out of bounds for computation -> 0.96713[0.001,0.5]
5004
Interaction: 5005/20016 Out of bounds for computation -> 0.742481[0.001,0.5]
5006
Interaction: 5007/20016 Out of bounds for computation -> 0.567111[0.001,0.5]
Interaction: 5008/20016 Out of bounds for computation -> 0.590482[0.001,0.5]
5009
5010
5011
Interaction: 5012/20016 Out of bounds for computation -> 1.88737[0.001,0.5]
Interaction: 5013/20016 Out of bounds for computation -> 1.37183[0.001,0.5]
5014
Interaction: 5015/20016 Out of bounds for computation -> 1.36859[0.001,0.5]
5016
Interaction: 5017/20016 Out of bounds for computation -> 0.621464[0.001,0.5]
5018
Interaction: 5019/20016 Out of bounds for computation -> 1.82473[0.001,0.5]
5020
5021
5022
Interaction: 5023/20016 Out of bounds for computation -> 1.46084[0.001,0.5]
5024
5025
Interaction: 5026/20016 Out of bounds for computation -> 0.615289[0.001,0.5]
Interaction: 5027/20016 Out of bounds for computation -> 0.788965[0.001,0.5]
5028
Interaction: 5029/20016 Out of bounds for computation -> 1.36654[0.001,0.5]
Interaction: 5030/20016 Out of bounds for computation -> 0.630427[0.001,0.5]
5031
5032
Interaction: 5033/20016 Out of bounds for computation -> 2.42095[0.001,0.5]
Interaction: 5034/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 5035/20016 Out of bounds for computation -> 1.43618[0.001,0.5]
Interaction: 5036/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 5037/20016 Out of bounds for computation -> 1.11319[0.001,0.5]
Interaction: 5038/20016 Out of bounds for computation -> 0.591905[0.001,0.5]
5039
Interaction: 5040/20016 Out of bounds for computation -> nan[0.001,0.5]
5041
5042
Interaction: 5043/20016 Out of bounds for computation -> nan[0.001,0.5]
5044
Interaction: 5045/20016 Out of bounds for computation -> 0.667647[0.001,0.5]
Interaction: 5046/20016 Out of bounds for computation -> 0.643818[0.001,0.5]
5047
5048
Interaction: 5049/20016 Out of bounds for computation -> 2.20878[0.001,0.5]
Interaction: 5050/20016 Out of bounds for computation -> 1.70565[0.001,0.5]
Interaction: 5051/20016 Out of bounds for computation -> 1.39978[0.001,0.5]
Interaction: 5052/20016 Out of bounds for computation -> 1.09363[0.001,0.5]
Interaction: 5053/20016 Out of bounds for computation -> 1.56797[0.001,0.5]
5054
5055
5056
5057
Interaction: 5058/20016 Out of bounds for computation -> 1.36671[0.001,0.5]
5059
Interaction: 5060/20016 Out of bounds for computation -> 1.43452[0.001,0.5]
5061
Interaction: 5062/20016 Out of bounds for computation -> 0.840023[0.001,0.5]
5063
5064
5065
5066
5067
Interaction: 5068/20016 Out of bounds for computation -> nan[0.001,0.5]
5069
Interaction: 5070/20016 Out of bounds for computation -> 1.22395[0.001,0.5]
5071
Interaction: 5072/20016 Out of bounds for computation -> 2.54486[0.001,0.5]
5073
5074
5075
5076
5077
Interaction: 5078/20016 Out of bounds for computation -> 1.79449[0.001,0.5]
5079
Interaction: 5080/20016 Out of bounds for computation -> 2.3529[0.001,0.5]
Interaction: 5081/20016 Out of bounds for computation -> 1.85757[0.001,0.5]
5082
Interaction: 5083/20016 Out of bounds for computation -> nan[0.001,0.5]
5084
Interaction: 5085/20016 Out of bounds for computation -> 0.536796[0.001,0.5]
5086
5087
Interaction: 5088/20016 Out of bounds for computation -> 1.41206[0.001,0.5]
Interaction: 5089/20016 Out of bounds for computation -> 0.783928[0.001,0.5]
5090
5091
Interaction: 5092/20016 Out of bounds for computation -> 1.49527[0.001,0.5]
Interaction: 5093/20016 Out of bounds for computation -> 1.3879[0.001,0.5]
5094
Interaction: 5095/20016 Out of bounds for computation -> 0.679823[0.001,0.5]
Interaction: 5096/20016 Out of bounds for computation -> 2.03916[0.001,0.5]
5097
Interaction: 5098/20016 Out of bounds for computation -> 0.824818[0.001,0.5]
Interaction: 5099/20016 Out of bounds for computation -> 0.701962[0.001,0.5]
Interaction: 5100/20016 Out of bounds for computation -> 2.44036[0.001,0.5]
Interaction: 5101/20016 Out of bounds for computation -> 1.45515[0.001,0.5]
5102
Interaction: 5103/20016 Out of bounds for computation -> nan[0.001,0.5]
5104
Interaction: 5105/20016 Out of bounds for computation -> 0.683992[0.001,0.5]
Interaction: 5106/20016 Out of bounds for computation -> 1.44925[0.001,0.5]
Interaction: 5107/20016 Out of bounds for computation -> 0.569501[0.001,0.5]
Interaction: 5108/20016 Out of bounds for computation -> 0.571753[0.001,0.5]
Interaction: 5109/20016 Out of bounds for computation -> 0.766081[0.001,0.5]
Interaction: 5110/20016 Out of bounds for computation -> nan[0.001,0.5]
5111
Interaction: 5112/20016 Out of bounds for computation -> 1.42657[0.001,0.5]
5113
5114
Interaction: 5115/20016 Out of bounds for computation -> 0.536975[0.001,0.5]
5116
Interaction: 5117/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 5118/20016 Out of bounds for computation -> 0.805402[0.001,0.5]
5119
5120
Interaction: 5121/20016 Out of bounds for computation -> 0.830163[0.001,0.5]
Interaction: 5122/20016 Out of bounds for computation -> 1.31698[0.001,0.5]
5123
Interaction: 5124/20016 Out of bounds for computation -> nan[0.001,0.5]
5125
Interaction: 5126/20016 Out of bounds for computation -> 2.12777[0.001,0.5]
5127
5128
Interaction: 5129/20016 Out of bounds for computation -> 1.4642[0.001,0.5]
5130
5131
Interaction: 5132/20016 Out of bounds for computation -> 1.41947[0.001,0.5]
5133
Interaction: 5134/20016 Out of bounds for computation -> 0.736245[0.001,0.5]
5135
Interaction: 5136/20016 Out of bounds for computation -> 1.53433[0.001,0.5]
Interaction: 5137/20016 Out of bounds for computation -> 1.19731[0.001,0.5]
5138
5139
Interaction: 5140/20016 Out of bounds for computation -> 2.35621[0.001,0.5]
5141
5142
5143
5144
5145
Interaction: 5146/20016 Out of bounds for computation -> 2.17007[0.001,0.5]
Interaction: 5147/20016 Out of bounds for computation -> 1.15386[0.001,0.5]
Interaction: 5148/20016 Out of bounds for computation -> 0.509904[0.001,0.5]
5149
5150
Interaction: 5151/20016 Out of bounds for computation -> 0.918321[0.001,0.5]
5152
Interaction: 5153/20016 Out of bounds for computation -> 1.49365[0.001,0.5]
5154
Interaction: 5155/20016 Out of bounds for computation -> 0.653568[0.001,0.5]
Interaction: 5156/20016 Out of bounds for computation -> nan[0.001,0.5]
5157
Interaction: 5158/20016 Out of bounds for computation -> nan[0.001,0.5]
5159
Interaction: 5160/20016 Out of bounds for computation -> 0.820017[0.001,0.5]
5161
5162
Interaction: 5163/20016 Out of bounds for computation -> 1.42113[0.001,0.5]
5164
Interaction: 5165/20016 Out of bounds for computation -> 0.57925[0.001,0.5]
5166
5167
5168
5169
Interaction: 5170/20016 Out of bounds for computation -> 1.59396[0.001,0.5]
5171
5172
5173
5174
Interaction: 5175/20016 Out of bounds for computation -> 1.41328[0.001,0.5]
5176
Interaction: 5177/20016 Out of bounds for computation -> 0.748955[0.001,0.5]
5178
Interaction: 5179/20016 Out of bounds for computation -> nan[0.001,0.5]
5180
5181
Interaction: 5182/20016 Out of bounds for computation -> 0.616492[0.001,0.5]
Interaction: 5183/20016 Out of bounds for computation -> 0.546863[0.001,0.5]
5184
Interaction: 5185/20016 Out of bounds for computation -> 1.41386[0.001,0.5]
5186
5187
5188
Interaction: 5189/20016 Out of bounds for computation -> 0.561584[0.001,0.5]
Interaction: 5190/20016 Out of bounds for computation -> 2.83435[0.001,0.5]
5191
5192
5193
5194
Interaction: 5195/20016 Out of bounds for computation -> 1.03702[0.001,0.5]
5196
Interaction: 5197/20016 Out of bounds for computation -> 0.668241[0.001,0.5]
Interaction: 5198/20016 Out of bounds for computation -> 0.695647[0.001,0.5]
5199
5200
Interaction: 5201/20016 Out of bounds for computation -> 1.40504[0.001,0.5]
5202
5203
5204
5205
5206
5207
Interaction: 5208/20016 Out of bounds for computation -> 0.535716[0.001,0.5]
5209
Interaction: 5210/20016 Out of bounds for computation -> 1.13437[0.001,0.5]
Interaction: 5211/20016 Out of bounds for computation -> 0.605093[0.001,0.5]
Interaction: 5212/20016 Out of bounds for computation -> 1.06394[0.001,0.5]
5213
Interaction: 5214/20016 Out of bounds for computation -> 1.39679[0.001,0.5]
5215
5216
Interaction: 5217/20016 Out of bounds for computation -> 2.10261[0.001,0.5]
Interaction: 5218/20016 Out of bounds for computation -> 1.38601[0.001,0.5]
5219
5220
5221
Interaction: 5222/20016 Out of bounds for computation -> 2.37748[0.001,0.5]
Interaction: 5223/20016 Out of bounds for computation -> 0.60338[0.001,0.5]
5224
Interaction: 5225/20016 Out of bounds for computation -> 0.724805[0.001,0.5]
5226
5227
5228
Interaction: 5229/20016 Out of bounds for computation -> 0.64291[0.001,0.5]
Interaction: 5230/20016 Out of bounds for computation -> 2.10625[0.001,0.5]
Interaction: 5231/20016 Out of bounds for computation -> 1.46136[0.001,0.5]
5232
Interaction: 5233/20016 Out of bounds for computation -> 1.99145[0.001,0.5]
Interaction: 5234/20016 Out of bounds for computation -> 2.61247[0.001,0.5]
Interaction: 5235/20016 Out of bounds for computation -> 0.554058[0.001,0.5]
Interaction: 5236/20016 Out of bounds for computation -> 2.00257[0.001,0.5]
Interaction: 5237/20016 Out of bounds for computation -> 1.38489[0.001,0.5]
5238
Interaction: 5239/20016 Out of bounds for computation -> 0.810953[0.001,0.5]
5240
Interaction: 5241/20016 Out of bounds for computation -> 2.42837[0.001,0.5]
Interaction: 5242/20016 Out of bounds for computation -> 0.750931[0.001,0.5]
Interaction: 5243/20016 Out of bounds for computation -> nan[0.001,0.5]
5244
5245
5246
Interaction: 5247/20016 Out of bounds for computation -> 1.36056[0.001,0.5]
Interaction: 5248/20016 Out of bounds for computation -> 0.615253[0.001,0.5]
Interaction: 5249/20016 Out of bounds for computation -> 1.59432[0.001,0.5]
5250
5251
5252
5253
5254
5255
Interaction: 5256/20016 Out of bounds for computation -> 0.934336[0.001,0.5]
Interaction: 5257/20016 Out of bounds for computation -> 1.22148[0.001,0.5]
Interaction: 5258/20016 Out of bounds for computation -> 0.518453[0.001,0.5]
Interaction: 5259/20016 Out of bounds for computation -> 0.575196[0.001,0.5]
Interaction: 5260/20016 Out of bounds for computation -> 2.24927[0.001,0.5]
5261
5262
5263
Interaction: 5264/20016 Out of bounds for computation -> 1.54373[0.001,0.5]
Interaction: 5265/20016 Out of bounds for computation -> 1.44637[0.001,0.5]
Interaction: 5266/20016 Out of bounds for computation -> 0.543987[0.001,0.5]
Interaction: 5267/20016 Out of bounds for computation -> 0.569411[0.001,0.5]
5268
5269
Interaction: 5270/20016 Out of bounds for computation -> 1.35747[0.001,0.5]
5271
Interaction: 5272/20016 Out of bounds for computation -> 1.39342[0.001,0.5]
5273
5274
Interaction: 5275/20016 Out of bounds for computation -> 0.774505[0.001,0.5]
Interaction: 5276/20016 Out of bounds for computation -> 0.679692[0.001,0.5]
Interaction: 5277/20016 Out of bounds for computation -> 1.1635[0.001,0.5]
Interaction: 5278/20016 Out of bounds for computation -> nan[0.001,0.5]
5279
5280
5281
Interaction: 5282/20016 Out of bounds for computation -> 0.759651[0.001,0.5]
5283
5284
5285
5286
Interaction: 5287/20016 Out of bounds for computation -> 1.98025[0.001,0.5]
5288
5289
Interaction: 5290/20016 Out of bounds for computation -> 1.72827[0.001,0.5]
5291
5292
Interaction: 5293/20016 Out of bounds for computation -> 1.63205[0.001,0.5]
5294
5295
Interaction: 5296/20016 Out of bounds for computation -> 0.545836[0.001,0.5]
Interaction: 5297/20016 Out of bounds for computation -> 0.715381[0.001,0.5]
Interaction: 5298/20016 Out of bounds for computation -> 0.530538[0.001,0.5]
Interaction: 5299/20016 Out of bounds for computation -> 0.837877[0.001,0.5]
5300
5301
Interaction: 5302/20016 Out of bounds for computation -> 2.87021[0.001,0.5]
5303
Interaction: 5304/20016 Out of bounds for computation -> 0.755863[0.001,0.5]
Interaction: 5305/20016 Out of bounds for computation -> 1.60159[0.001,0.5]
Interaction: 5306/20016 Out of bounds for computation -> 2.55051[0.001,0.5]
5307
Interaction: 5308/20016 Out of bounds for computation -> nan[0.001,0.5]
5309
Interaction: 5310/20016 Out of bounds for computation -> 2.18629[0.001,0.5]
Interaction: 5311/20016 Out of bounds for computation -> 1.41557[0.001,0.5]
5312
5313
5314
5315
Interaction: 5316/20016 Out of bounds for computation -> 0.574048[0.001,0.5]
5317
5318
Interaction: 5319/20016 Out of bounds for computation -> 2.54697[0.001,0.5]
5320
5321
5322
Interaction: 5323/20016 Out of bounds for computation -> 1.94545[0.001,0.5]
5324
5325
Interaction: 5326/20016 Out of bounds for computation -> 0.537776[0.001,0.5]
Interaction: 5327/20016 Out of bounds for computation -> 1.23246[0.001,0.5]
5328
5329
Interaction: 5330/20016 Out of bounds for computation -> 0.9768[0.001,0.5]
5331
Interaction: 5332/20016 Out of bounds for computation -> 2.19432[0.001,0.5]
5333
Interaction: 5334/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 5335/20016 Out of bounds for computation -> 0.818203[0.001,0.5]
Interaction: 5336/20016 Out of bounds for computation -> 1.23356[0.001,0.5]
5337
5338
5339
Interaction: 5340/20016 Out of bounds for computation -> 0.666929[0.001,0.5]
Interaction: 5341/20016 Out of bounds for computation -> 2.71442[0.001,0.5]
Interaction: 5342/20016 Out of bounds for computation -> 2.02849[0.001,0.5]
5343
Interaction: 5344/20016 Out of bounds for computation -> 2.01121[0.001,0.5]
5345
Interaction: 5346/20016 Out of bounds for computation -> 1.32305[0.001,0.5]
Interaction: 5347/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 5348/20016 Out of bounds for computation -> 0.668548[0.001,0.5]
Interaction: 5349/20016 Out of bounds for computation -> 0.505207[0.001,0.5]
5350
5351
5352
Interaction: 5353/20016 Out of bounds for computation -> 1.25211[0.001,0.5]
Interaction: 5354/20016 Out of bounds for computation -> 0.933548[0.001,0.5]
Interaction: 5355/20016 Out of bounds for computation -> 1.41979[0.001,0.5]
Interaction: 5356/20016 Out of bounds for computation -> 0.63135[0.001,0.5]
Interaction: 5357/20016 Out of bounds for computation -> 0.580676[0.001,0.5]
5358
Interaction: 5359/20016 Out of bounds for computation -> 0.723431[0.001,0.5]
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
Interaction: 5372/20016 Out of bounds for computation -> 0.708678[0.001,0.5]
Interaction: 5373/20016 Out of bounds for computation -> 0.572686[0.001,0.5]
5374
5375
5376
Interaction: 5377/20016 Out of bounds for computation -> 2.15411[0.001,0.5]
5378
Interaction: 5379/20016 Out of bounds for computation -> nan[0.001,0.5]
5380
5381
Interaction: 5382/20016 Out of bounds for computation -> 1.87281[0.001,0.5]
Interaction: 5383/20016 Out of bounds for computation -> 1.37575[0.001,0.5]
5384
Interaction: 5385/20016 Out of bounds for computation -> nan[0.001,0.5]
5386
5387
5388
5389
5390
Interaction: 5391/20016 Out of bounds for computation -> 0.975259[0.001,0.5]
Interaction: 5392/20016 Out of bounds for computation -> 0.907977[0.001,0.5]
Interaction: 5393/20016 Out of bounds for computation -> 0.574577[0.001,0.5]
Interaction: 5394/20016 Out of bounds for computation -> 2.73723[0.001,0.5]
5395
5396
5397
5398
5399
5400
Interaction: 5401/20016 Out of bounds for computation -> 1.56683[0.001,0.5]
5402
5403
5404
Interaction: 5405/20016 Out of bounds for computation -> 0.552929[0.001,0.5]
Interaction: 5406/20016 Out of bounds for computation -> 1.77578[0.001,0.5]
5407
5408
Interaction: 5409/20016 Out of bounds for computation -> 2.24472[0.001,0.5]
5410
5411
Interaction: 5412/20016 Out of bounds for computation -> 2.65432[0.001,0.5]
Interaction: 5413/20016 Out of bounds for computation -> 1.94765[0.001,0.5]
Interaction: 5414/20016 Out of bounds for computation -> 2.47513[0.001,0.5]
5415
Interaction: 5416/20016 Out of bounds for computation -> 0.612419[0.001,0.5]
5417
5418
5419
Interaction: 5420/20016 Out of bounds for computation -> 0.763383[0.001,0.5]
Interaction: 5421/20016 Out of bounds for computation -> 0.508135[0.001,0.5]
Interaction: 5422/20016 Out of bounds for computation -> 0.515019[0.001,0.5]
5423
Interaction: 5424/20016 Out of bounds for computation -> 0.780129[0.001,0.5]
Interaction: 5425/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 5426/20016 Out of bounds for computation -> 0.585534[0.001,0.5]
Interaction: 5427/20016 Out of bounds for computation -> nan[0.001,0.5]
5428
5429
5430
Interaction: 5431/20016 Out of bounds for computation -> 2.75417[0.001,0.5]
Interaction: 5432/20016 Out of bounds for computation -> 0.785966[0.001,0.5]
5433
5434
5435
5436
5437
Interaction: 5438/20016 Out of bounds for computation -> 2.237[0.001,0.5]
5439
5440
Interaction: 5441/20016 Out of bounds for computation -> 2.19915[0.001,0.5]
5442
Interaction: 5443/20016 Out of bounds for computation -> 1.01084[0.001,0.5]
Interaction: 5444/20016 Out of bounds for computation -> 2.02926[0.001,0.5]
Interaction: 5445/20016 Out of bounds for computation -> 0.58694[0.001,0.5]
Interaction: 5446/20016 Out of bounds for computation -> 1.37462[0.001,0.5]
5447
Interaction: 5448/20016 Out of bounds for computation -> 0.835811[0.001,0.5]
Interaction: 5449/20016 Out of bounds for computation -> 2.29259[0.001,0.5]
Interaction: 5450/20016 Out of bounds for computation -> nan[0.001,0.5]
5451
5452
Interaction: 5453/20016 Out of bounds for computation -> 0.708444[0.001,0.5]
Interaction: 5454/20016 Out of bounds for computation -> 1.61826[0.001,0.5]
5455
Interaction: 5456/20016 Out of bounds for computation -> 1.89095[0.001,0.5]
Interaction: 5457/20016 Out of bounds for computation -> 1.60765[0.001,0.5]
Interaction: 5458/20016 Out of bounds for computation -> 1.98414[0.001,0.5]
5459
5460
5461
5462
Interaction: 5463/20016 Out of bounds for computation -> 0.800223[0.001,0.5]
Interaction: 5464/20016 Out of bounds for computation -> 1.47613[0.001,0.5]
5465
5466
5467
Interaction: 5468/20016 Out of bounds for computation -> 1.84947[0.001,0.5]
Interaction: 5469/20016 Out of bounds for computation -> 1.49912[0.001,0.5]
5470
5471
Interaction: 5472/20016 Out of bounds for computation -> nan[0.001,0.5]
5473
5474
5475
Interaction: 5476/20016 Out of bounds for computation -> 2.1748[0.001,0.5]
Interaction: 5477/20016 Out of bounds for computation -> 1.74256[0.001,0.5]
5478
Interaction: 5479/20016 Out of bounds for computation -> 1.51629[0.001,0.5]
Interaction: 5480/20016 Out of bounds for computation -> 0.767727[0.001,0.5]
5481
5482
Interaction: 5483/20016 Out of bounds for computation -> 0.714891[0.001,0.5]
5484
Interaction: 5485/20016 Out of bounds for computation -> 1.43726[0.001,0.5]
5486
Interaction: 5487/20016 Out of bounds for computation -> 1.40704[0.001,0.5]
5488
Interaction: 5489/20016 Out of bounds for computation -> 1.22574[0.001,0.5]
5490
Interaction: 5491/20016 Out of bounds for computation -> 0.64557[0.001,0.5]
5492
Interaction: 5493/20016 Out of bounds for computation -> 1.37119[0.001,0.5]
5494
5495
5496
Interaction: 5497/20016 Out of bounds for computation -> 2.29332[0.001,0.5]
Interaction: 5498/20016 Out of bounds for computation -> 0.600014[0.001,0.5]
5499
Interaction: 5500/20016 Out of bounds for computation -> 2.82594[0.001,0.5]
Interaction: 5501/20016 Out of bounds for computation -> 0.517485[0.001,0.5]
Interaction: 5502/20016 Out of bounds for computation -> 1.89324[0.001,0.5]
Interaction: 5503/20016 Out of bounds for computation -> nan[0.001,0.5]
5504
Interaction: 5505/20016 Out of bounds for computation -> 0.545768[0.001,0.5]
5506
5507
5508
Interaction: 5509/20016 Out of bounds for computation -> 1.68117[0.001,0.5]
5510
5511
5512
5513
5514
5515
5516
Interaction: 5517/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 5518/20016 Out of bounds for computation -> 1.74776[0.001,0.5]
5519
5520
Interaction: 5521/20016 Out of bounds for computation -> 1.73307[0.001,0.5]
Interaction: 5522/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 5523/20016 Out of bounds for computation -> 2.83258[0.001,0.5]
Interaction: 5524/20016 Out of bounds for computation -> 0.553236[0.001,0.5]
5525
Interaction: 5526/20016 Out of bounds for computation -> nan[0.001,0.5]
5527
5528
Interaction: 5529/20016 Out of bounds for computation -> 0.646708[0.001,0.5]
5530
Interaction: 5531/20016 Out of bounds for computation -> 0.664577[0.001,0.5]
5532
Interaction: 5533/20016 Out of bounds for computation -> 1.48748[0.001,0.5]
Interaction: 5534/20016 Out of bounds for computation -> 0.610267[0.001,0.5]
5535
Interaction: 5536/20016 Out of bounds for computation -> 1.2052[0.001,0.5]
5537
Interaction: 5538/20016 Out of bounds for computation -> 1.13033[0.001,0.5]
Interaction: 5539/20016 Out of bounds for computation -> 0.595398[0.001,0.5]
Interaction: 5540/20016 Out of bounds for computation -> 0.664981[0.001,0.5]
Interaction: 5541/20016 Out of bounds for computation -> 0.606631[0.001,0.5]
Interaction: 5542/20016 Out of bounds for computation -> 1.61133[0.001,0.5]
5543
5544
5545
Interaction: 5546/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 5547/20016 Out of bounds for computation -> nan[0.001,0.5]
5548
Interaction: 5549/20016 Out of bounds for computation -> 2.11584[0.001,0.5]
5550
Interaction: 5551/20016 Out of bounds for computation -> 0.625504[0.001,0.5]
Interaction: 5552/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 5553/20016 Out of bounds for computation -> 1.45404[0.001,0.5]
5554
Interaction: 5555/20016 Out of bounds for computation -> 1.92812[0.001,0.5]
Interaction: 5556/20016 Out of bounds for computation -> 0.533076[0.001,0.5]
Interaction: 5557/20016 Out of bounds for computation -> 0.615108[0.001,0.5]
5558
5559
Interaction: 5560/20016 Out of bounds for computation -> 1.99852[0.001,0.5]
5561
Interaction: 5562/20016 Out of bounds for computation -> 0.533286[0.001,0.5]
5563
5564
Interaction: 5565/20016 Out of bounds for computation -> 0.898692[0.001,0.5]
5566
Interaction: 5567/20016 Out of bounds for computation -> 1.6976[0.001,0.5]
5568
5569
5570
Interaction: 5571/20016 Out of bounds for computation -> 0.517309[0.001,0.5]
Interaction: 5572/20016 Out of bounds for computation -> 1.9202[0.001,0.5]
5573
Interaction: 5574/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 5575/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 5576/20016 Out of bounds for computation -> 1.4812[0.001,0.5]
Interaction: 5577/20016 Out of bounds for computation -> 0.914098[0.001,0.5]
5578
5579
5580
Interaction: 5581/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 5582/20016 Out of bounds for computation -> 1.41216[0.001,0.5]
Interaction: 5583/20016 Out of bounds for computation -> 0.688819[0.001,0.5]
5584
5585
Interaction: 5586/20016 Out of bounds for computation -> 0.609914[0.001,0.5]
5587
5588
5589
Interaction: 5590/20016 Out of bounds for computation -> 0.582413[0.001,0.5]
5591
Interaction: 5592/20016 Out of bounds for computation -> 0.729787[0.001,0.5]
5593
Interaction: 5594/20016 Out of bounds for computation -> 0.650428[0.001,0.5]
Interaction: 5595/20016 Out of bounds for computation -> 1.83346[0.001,0.5]
5596
5597
5598
Interaction: 5599/20016 Out of bounds for computation -> nan[0.001,0.5]
5600
5601
5602
Interaction: 5603/20016 Out of bounds for computation -> 2.03223[0.001,0.5]
Interaction: 5604/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 5605/20016 Out of bounds for computation -> 0.551563[0.001,0.5]
5606
5607
5608
5609
Interaction: 5610/20016 Out of bounds for computation -> nan[0.001,0.5]
5611
5612
5613
5614
Interaction: 5615/20016 Out of bounds for computation -> 1.64867[0.001,0.5]
5616
Interaction: 5617/20016 Out of bounds for computation -> 1.03159[0.001,0.5]
Interaction: 5618/20016 Out of bounds for computation -> 2.6577[0.001,0.5]
5619
5620
Interaction: 5621/20016 Out of bounds for computation -> 0.814814[0.001,0.5]
Interaction: 5622/20016 Out of bounds for computation -> 1.67606[0.001,0.5]
Interaction: 5623/20016 Out of bounds for computation -> 0.694783[0.001,0.5]
5624
Interaction: 5625/20016 Out of bounds for computation -> 0.536404[0.001,0.5]
5626
Interaction: 5627/20016 Out of bounds for computation -> 1.30324[0.001,0.5]
Interaction: 5628/20016 Out of bounds for computation -> 1.85977[0.001,0.5]
5629
5630
Interaction: 5631/20016 Out of bounds for computation -> 0.982733[0.001,0.5]
5632
Interaction: 5633/20016 Out of bounds for computation -> 0.581003[0.001,0.5]
Interaction: 5634/20016 Out of bounds for computation -> 1.77912[0.001,0.5]
Interaction: 5635/20016 Out of bounds for computation -> 1.88824[0.001,0.5]
Interaction: 5636/20016 Out of bounds for computation -> 1.55439[0.001,0.5]
Interaction: 5637/20016 Out of bounds for computation -> 1.4086[0.001,0.5]
Interaction: 5638/20016 Out of bounds for computation -> 0.756559[0.001,0.5]
5639
Interaction: 5640/20016 Out of bounds for computation -> 1.32129[0.001,0.5]
Interaction: 5641/20016 Out of bounds for computation -> nan[0.001,0.5]
5642
Interaction: 5643/20016 Out of bounds for computation -> 0.738471[0.001,0.5]
5644
Interaction: 5645/20016 Out of bounds for computation -> 0.595076[0.001,0.5]
5646
Interaction: 5647/20016 Out of bounds for computation -> 0.512427[0.001,0.5]
5648
Interaction: 5649/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 5650/20016 Out of bounds for computation -> 2.0469[0.001,0.5]
Interaction: 5651/20016 Out of bounds for computation -> 1.00086[0.001,0.5]
5652
Interaction: 5653/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 5654/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 5655/20016 Out of bounds for computation -> nan[0.001,0.5]
5656
5657
5658
5659
Interaction: 5660/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 5661/20016 Out of bounds for computation -> 1.61716[0.001,0.5]
5662
5663
Interaction: 5664/20016 Out of bounds for computation -> 0.667748[0.001,0.5]
5665
5666
5667
Interaction: 5668/20016 Out of bounds for computation -> 0.812865[0.001,0.5]
5669
Interaction: 5670/20016 Out of bounds for computation -> 1.73758[0.001,0.5]
5671
5672
5673
Interaction: 5674/20016 Out of bounds for computation -> nan[0.001,0.5]
5675
Interaction: 5676/20016 Out of bounds for computation -> 1.27511[0.001,0.5]
5677
Interaction: 5678/20016 Out of bounds for computation -> 0.541274[0.001,0.5]
Interaction: 5679/20016 Out of bounds for computation -> 1.87308[0.001,0.5]
5680
Interaction: 5681/20016 Out of bounds for computation -> 1.58306[0.001,0.5]
5682
5683
5684
Interaction: 5685/20016 Out of bounds for computation -> 0.656127[0.001,0.5]
Interaction: 5686/20016 Out of bounds for computation -> 2.22205[0.001,0.5]
5687
Interaction: 5688/20016 Out of bounds for computation -> 2.85177[0.001,0.5]
Interaction: 5689/20016 Out of bounds for computation -> 2.91142[0.001,0.5]
5690
5691
Interaction: 5692/20016 Out of bounds for computation -> 1.50759[0.001,0.5]
Interaction: 5693/20016 Out of bounds for computation -> 1.4464[0.001,0.5]
Interaction: 5694/20016 Out of bounds for computation -> 0.839526[0.001,0.5]
Interaction: 5695/20016 Out of bounds for computation -> nan[0.001,0.5]
5696
5697
5698
5699
5700
Interaction: 5701/20016 Out of bounds for computation -> 0.539861[0.001,0.5]
Interaction: 5702/20016 Out of bounds for computation -> 1.0826[0.001,0.5]
5703
Interaction: 5704/20016 Out of bounds for computation -> 2.03315[0.001,0.5]
5705
5706
5707
5708
Interaction: 5709/20016 Out of bounds for computation -> 1.49149[0.001,0.5]
5710
Interaction: 5711/20016 Out of bounds for computation -> nan[0.001,0.5]
5712
Interaction: 5713/20016 Out of bounds for computation -> 0.512898[0.001,0.5]
Interaction: 5714/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 5715/20016 Out of bounds for computation -> 0.964179[0.001,0.5]
5716
Interaction: 5717/20016 Out of bounds for computation -> 2.35087[0.001,0.5]
Interaction: 5718/20016 Out of bounds for computation -> 0.656431[0.001,0.5]
5719
Interaction: 5720/20016 Out of bounds for computation -> 1.41839[0.001,0.5]
Interaction: 5721/20016 Out of bounds for computation -> 0.50084[0.001,0.5]
5722
5723
Interaction: 5724/20016 Out of bounds for computation -> 1.38757[0.001,0.5]
5725
5726
Interaction: 5727/20016 Out of bounds for computation -> 0.656336[0.001,0.5]
5728
Interaction: 5729/20016 Out of bounds for computation -> 1.38443[0.001,0.5]
Interaction: 5730/20016 Out of bounds for computation -> nan[0.001,0.5]
5731
Interaction: 5732/20016 Out of bounds for computation -> 2.04873[0.001,0.5]
5733
Interaction: 5734/20016 Out of bounds for computation -> 0.585997[0.001,0.5]
Interaction: 5735/20016 Out of bounds for computation -> 0.658332[0.001,0.5]
5736
Interaction: 5737/20016 Out of bounds for computation -> 0.5669[0.001,0.5]
Interaction: 5738/20016 Out of bounds for computation -> 0.837375[0.001,0.5]
5739
Interaction: 5740/20016 Out of bounds for computation -> 0.814093[0.001,0.5]
5741
5742
5743
5744
5745
Interaction: 5746/20016 Out of bounds for computation -> 3.0019[0.001,0.5]
Interaction: 5747/20016 Out of bounds for computation -> 1.56815[0.001,0.5]
5748
Interaction: 5749/20016 Out of bounds for computation -> 1.48614[0.001,0.5]
5750
Interaction: 5751/20016 Out of bounds for computation -> 0.675652[0.001,0.5]
5752
Interaction: 5753/20016 Out of bounds for computation -> 1.1752[0.001,0.5]
Interaction: 5754/20016 Out of bounds for computation -> nan[0.001,0.5]
5755
Interaction: 5756/20016 Out of bounds for computation -> 0.826316[0.001,0.5]
5757
Interaction: 5758/20016 Out of bounds for computation -> 1.99411[0.001,0.5]
Interaction: 5759/20016 Out of bounds for computation -> 0.517422[0.001,0.5]
Interaction: 5760/20016 Out of bounds for computation -> 1.97924[0.001,0.5]
Interaction: 5761/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 5762/20016 Out of bounds for computation -> 0.555695[0.001,0.5]
5763
Interaction: 5764/20016 Out of bounds for computation -> 0.521423[0.001,0.5]
5765
Interaction: 5766/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 5767/20016 Out of bounds for computation -> 1.50794[0.001,0.5]
5768
5769
5770
Interaction: 5771/20016 Out of bounds for computation -> 1.53625[0.001,0.5]
5772
5773
Interaction: 5774/20016 Out of bounds for computation -> 1.60965[0.001,0.5]
Interaction: 5775/20016 Out of bounds for computation -> 0.900999[0.001,0.5]
Interaction: 5776/20016 Out of bounds for computation -> 0.821977[0.001,0.5]
5777
Interaction: 5778/20016 Out of bounds for computation -> 0.569006[0.001,0.5]
5779
Interaction: 5780/20016 Out of bounds for computation -> 1.44627[0.001,0.5]
5781
Interaction: 5782/20016 Out of bounds for computation -> 0.858261[0.001,0.5]
5783
5784
5785
Interaction: 5786/20016 Out of bounds for computation -> 2.21875[0.001,0.5]
Interaction: 5787/20016 Out of bounds for computation -> 3.01722[0.001,0.5]
Interaction: 5788/20016 Out of bounds for computation -> 1.45727[0.001,0.5]
Interaction: 5789/20016 Out of bounds for computation -> 1.6195[0.001,0.5]
5790
Interaction: 5791/20016 Out of bounds for computation -> 0.60281[0.001,0.5]
Interaction: 5792/20016 Out of bounds for computation -> 1.4262[0.001,0.5]
Interaction: 5793/20016 Out of bounds for computation -> 0.67204[0.001,0.5]
Interaction: 5794/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 5795/20016 Out of bounds for computation -> 1.46087[0.001,0.5]
Interaction: 5796/20016 Out of bounds for computation -> 1.49786[0.001,0.5]
5797
Interaction: 5798/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 5799/20016 Out of bounds for computation -> 0.726479[0.001,0.5]
Interaction: 5800/20016 Out of bounds for computation -> 0.726611[0.001,0.5]
5801
5802
Interaction: 5803/20016 Out of bounds for computation -> 2.30565[0.001,0.5]
5804
5805
Interaction: 5806/20016 Out of bounds for computation -> 0.581694[0.001,0.5]
5807
5808
Interaction: 5809/20016 Out of bounds for computation -> 1.46412[0.001,0.5]
Interaction: 5810/20016 Out of bounds for computation -> 0.584745[0.001,0.5]
5811
Interaction: 5812/20016 Out of bounds for computation -> 1.60537[0.001,0.5]
Interaction: 5813/20016 Out of bounds for computation -> 0.754074[0.001,0.5]
5814
5815
Interaction: 5816/20016 Out of bounds for computation -> 1.87906[0.001,0.5]
Interaction: 5817/20016 Out of bounds for computation -> 1.73231[0.001,0.5]
5818
5819
Interaction: 5820/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 5821/20016 Out of bounds for computation -> 0.600476[0.001,0.5]
5822
5823
Interaction: 5824/20016 Out of bounds for computation -> 0.820535[0.001,0.5]
5825
5826
Interaction: 5827/20016 Out of bounds for computation -> 1.0174[0.001,0.5]
Interaction: 5828/20016 Out of bounds for computation -> 1.55051[0.001,0.5]
5829
5830
5831
5832
5833
5834
Interaction: 5835/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 5836/20016 Out of bounds for computation -> 1.44951[0.001,0.5]
Interaction: 5837/20016 Out of bounds for computation -> 1.03207[0.001,0.5]
5838
5839
5840
Interaction: 5841/20016 Out of bounds for computation -> nan[0.001,0.5]
5842
5843
5844
Interaction: 5845/20016 Out of bounds for computation -> 0.616192[0.001,0.5]
5846
5847
Interaction: 5848/20016 Out of bounds for computation -> 1.28335[0.001,0.5]
Interaction: 5849/20016 Out of bounds for computation -> 0.761088[0.001,0.5]
5850
Interaction: 5851/20016 Out of bounds for computation -> 1.39396[0.001,0.5]
5852
5853
Interaction: 5854/20016 Out of bounds for computation -> 2.10618[0.001,0.5]
5855
Interaction: 5856/20016 Out of bounds for computation -> 0.829605[0.001,0.5]
5857
Interaction: 5858/20016 Out of bounds for computation -> 0.915734[0.001,0.5]
Interaction: 5859/20016 Out of bounds for computation -> 0.628189[0.001,0.5]
Interaction: 5860/20016 Out of bounds for computation -> 0.802475[0.001,0.5]
5861
5862
5863
5864
5865
5866
Interaction: 5867/20016 Out of bounds for computation -> nan[0.001,0.5]
5868
Interaction: 5869/20016 Out of bounds for computation -> 0.656786[0.001,0.5]
5870
Interaction: 5871/20016 Out of bounds for computation -> 1.73199[0.001,0.5]
5872
Interaction: 5873/20016 Out of bounds for computation -> 2.03342[0.001,0.5]
5874
5875
Interaction: 5876/20016 Out of bounds for computation -> 0.625914[0.001,0.5]
Interaction: 5877/20016 Out of bounds for computation -> 0.728169[0.001,0.5]
Interaction: 5878/20016 Out of bounds for computation -> 0.568244[0.001,0.5]
5879
5880
Interaction: 5881/20016 Out of bounds for computation -> 0.824483[0.001,0.5]
5882
5883
Interaction: 5884/20016 Out of bounds for computation -> 0.958529[0.001,0.5]
5885
5886
5887
Interaction: 5888/20016 Out of bounds for computation -> 0.605934[0.001,0.5]
Interaction: 5889/20016 Out of bounds for computation -> 0.563321[0.001,0.5]
Interaction: 5890/20016 Out of bounds for computation -> 1.70348[0.001,0.5]
Interaction: 5891/20016 Out of bounds for computation -> 1.18931[0.001,0.5]
5892
5893
5894
Interaction: 5895/20016 Out of bounds for computation -> 0.594647[0.001,0.5]
5896
5897
5898
5899
Interaction: 5900/20016 Out of bounds for computation -> 1.55694[0.001,0.5]
5901
Interaction: 5902/20016 Out of bounds for computation -> 1.1946[0.001,0.5]
Interaction: 5903/20016 Out of bounds for computation -> 0.649529[0.001,0.5]
5904
Interaction: 5905/20016 Out of bounds for computation -> 0.802724[0.001,0.5]
Interaction: 5906/20016 Out of bounds for computation -> 0.512821[0.001,0.5]
5907
5908
Interaction: 5909/20016 Out of bounds for computation -> 2.3374[0.001,0.5]
Interaction: 5910/20016 Out of bounds for computation -> 1.88077[0.001,0.5]
Interaction: 5911/20016 Out of bounds for computation -> 1.48088[0.001,0.5]
5912
5913
Interaction: 5914/20016 Out of bounds for computation -> 1.43288[0.001,0.5]
5915
5916
5917
Interaction: 5918/20016 Out of bounds for computation -> 0.615279[0.001,0.5]
5919
5920
Interaction: 5921/20016 Out of bounds for computation -> 1.41955[0.001,0.5]
Interaction: 5922/20016 Out of bounds for computation -> 0.696837[0.001,0.5]
Interaction: 5923/20016 Out of bounds for computation -> 1.50615[0.001,0.5]
Interaction: 5924/20016 Out of bounds for computation -> nan[0.001,0.5]
5925
5926
Interaction: 5927/20016 Out of bounds for computation -> 1.04113[0.001,0.5]
Interaction: 5928/20016 Out of bounds for computation -> 0.571315[0.001,0.5]
Interaction: 5929/20016 Out of bounds for computation -> 1.29463[0.001,0.5]
5930
Interaction: 5931/20016 Out of bounds for computation -> 0.504599[0.001,0.5]
5932
5933
Interaction: 5934/20016 Out of bounds for computation -> 2.13291[0.001,0.5]
Interaction: 5935/20016 Out of bounds for computation -> 0.707838[0.001,0.5]
5936
5937
Interaction: 5938/20016 Out of bounds for computation -> 1.0134[0.001,0.5]
5939
5940
5941
5942
5943
Interaction: 5944/20016 Out of bounds for computation -> 0.795094[0.001,0.5]
5945
Interaction: 5946/20016 Out of bounds for computation -> 0.605486[0.001,0.5]
5947
5948
5949
5950
Interaction: 5951/20016 Out of bounds for computation -> 1.5323[0.001,0.5]
Interaction: 5952/20016 Out of bounds for computation -> nan[0.001,0.5]
5953
5954
5955
Interaction: 5956/20016 Out of bounds for computation -> 1.67036[0.001,0.5]
Interaction: 5957/20016 Out of bounds for computation -> 1.31924[0.001,0.5]
Interaction: 5958/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 5959/20016 Out of bounds for computation -> 2.00468[0.001,0.5]
Interaction: 5960/20016 Out of bounds for computation -> 0.525976[0.001,0.5]
Interaction: 5961/20016 Out of bounds for computation -> 1.03444[0.001,0.5]
5962
5963
5964
5965
Interaction: 5966/20016 Out of bounds for computation -> 0.813898[0.001,0.5]
Interaction: 5967/20016 Out of bounds for computation -> 1.21642[0.001,0.5]
Interaction: 5968/20016 Out of bounds for computation -> 0.695409[0.001,0.5]
Interaction: 5969/20016 Out of bounds for computation -> 1.92685[0.001,0.5]
5970
5971
Interaction: 5972/20016 Out of bounds for computation -> 0.609929[0.001,0.5]
5973
Interaction: 5974/20016 Out of bounds for computation -> 1.43583[0.001,0.5]
5975
Interaction: 5976/20016 Out of bounds for computation -> 1.1931[0.001,0.5]
5977
Interaction: 5978/20016 Out of bounds for computation -> 0.551068[0.001,0.5]
5979
5980
5981
Interaction: 5982/20016 Out of bounds for computation -> 2.29616[0.001,0.5]
5983
Interaction: 5984/20016 Out of bounds for computation -> 1.19095[0.001,0.5]
5985
Interaction: 5986/20016 Out of bounds for computation -> 0.690071[0.001,0.5]
Interaction: 5987/20016 Out of bounds for computation -> 0.889913[0.001,0.5]
5988
5989
Interaction: 5990/20016 Out of bounds for computation -> 0.802411[0.001,0.5]
5991
5992
5993
Interaction: 5994/20016 Out of bounds for computation -> 1.83224[0.001,0.5]
Interaction: 5995/20016 Out of bounds for computation -> 2.21494[0.001,0.5]
Interaction: 5996/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 5997/20016 Out of bounds for computation -> nan[0.001,0.5]
5998
5999
6000
Interaction: 6001/20016 Out of bounds for computation -> 2.02175[0.001,0.5]
Interaction: 6002/20016 Out of bounds for computation -> 0.746876[0.001,0.5]
Interaction: 6003/20016 Out of bounds for computation -> 0.892523[0.001,0.5]
6004
6005
6006
6007
6008
Interaction: 6009/20016 Out of bounds for computation -> 1.95555[0.001,0.5]
6010
6011
6012
6013
Interaction: 6014/20016 Out of bounds for computation -> 0.653575[0.001,0.5]
6015
6016
6017
6018
6019
Interaction: 6020/20016 Out of bounds for computation -> 1.48537[0.001,0.5]
Interaction: 6021/20016 Out of bounds for computation -> 1.95236[0.001,0.5]
Interaction: 6022/20016 Out of bounds for computation -> 0.566944[0.001,0.5]
Interaction: 6023/20016 Out of bounds for computation -> 1.47548[0.001,0.5]
6024
6025
Interaction: 6026/20016 Out of bounds for computation -> 1.74349[0.001,0.5]
Interaction: 6027/20016 Out of bounds for computation -> 1.44662[0.001,0.5]
Interaction: 6028/20016 Out of bounds for computation -> 0.878539[0.001,0.5]
6029
6030
6031
Interaction: 6032/20016 Out of bounds for computation -> 0.939853[0.001,0.5]
6033
Interaction: 6034/20016 Out of bounds for computation -> nan[0.001,0.5]
6035
Interaction: 6036/20016 Out of bounds for computation -> 1.3891[0.001,0.5]
6037
6038
Interaction: 6039/20016 Out of bounds for computation -> 0.717522[0.001,0.5]
Interaction: 6040/20016 Out of bounds for computation -> 1.5415[0.001,0.5]
Interaction: 6041/20016 Out of bounds for computation -> 2.53321[0.001,0.5]
6042
6043
6044
Interaction: 6045/20016 Out of bounds for computation -> 2.46631[0.001,0.5]
Interaction: 6046/20016 Out of bounds for computation -> 0.589608[0.001,0.5]
6047
Interaction: 6048/20016 Out of bounds for computation -> nan[0.001,0.5]
6049
6050
6051
Interaction: 6052/20016 Out of bounds for computation -> 0.583995[0.001,0.5]
6053
6054
6055
6056
6057
Interaction: 6058/20016 Out of bounds for computation -> 0.880219[0.001,0.5]
6059
Interaction: 6060/20016 Out of bounds for computation -> 0.56797[0.001,0.5]
Interaction: 6061/20016 Out of bounds for computation -> 1.27151[0.001,0.5]
Interaction: 6062/20016 Out of bounds for computation -> nan[0.001,0.5]
6063
Interaction: 6064/20016 Out of bounds for computation -> 2.63153[0.001,0.5]
Interaction: 6065/20016 Out of bounds for computation -> 1.51279[0.001,0.5]
6066
Interaction: 6067/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 6068/20016 Out of bounds for computation -> 1.18378[0.001,0.5]
6069
6070
Interaction: 6071/20016 Out of bounds for computation -> 0.991509[0.001,0.5]
6072
Interaction: 6073/20016 Out of bounds for computation -> 3.00475[0.001,0.5]
Interaction: 6074/20016 Out of bounds for computation -> 1.59584[0.001,0.5]
6075
6076
Interaction: 6077/20016 Out of bounds for computation -> 0.916038[0.001,0.5]
Interaction: 6078/20016 Out of bounds for computation -> 1.80154[0.001,0.5]
6079
6080
6081
Interaction: 6082/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 6083/20016 Out of bounds for computation -> 1.58856[0.001,0.5]
6084
Interaction: 6085/20016 Out of bounds for computation -> 2.2612[0.001,0.5]
6086
Interaction: 6087/20016 Out of bounds for computation -> 0.590794[0.001,0.5]
Interaction: 6088/20016 Out of bounds for computation -> 0.696904[0.001,0.5]
Interaction: 6089/20016 Out of bounds for computation -> 0.823278[0.001,0.5]
6090
6091
6092
Interaction: 6093/20016 Out of bounds for computation -> 1.43357[0.001,0.5]
6094
Interaction: 6095/20016 Out of bounds for computation -> 0.576898[0.001,0.5]
6096
Interaction: 6097/20016 Out of bounds for computation -> 0.573597[0.001,0.5]
Interaction: 6098/20016 Out of bounds for computation -> 0.995707[0.001,0.5]
6099
6100
6101
6102
Interaction: 6103/20016 Out of bounds for computation -> 0.622324[0.001,0.5]
6104
6105
6106
6107
Interaction: 6108/20016 Out of bounds for computation -> 1.69779[0.001,0.5]
6109
Interaction: 6110/20016 Out of bounds for computation -> 0.812095[0.001,0.5]
Interaction: 6111/20016 Out of bounds for computation -> 0.878345[0.001,0.5]
Interaction: 6112/20016 Out of bounds for computation -> 1.40584[0.001,0.5]
6113
Interaction: 6114/20016 Out of bounds for computation -> 0.854469[0.001,0.5]
6115
6116
6117
Interaction: 6118/20016 Out of bounds for computation -> 2.39939[0.001,0.5]
Interaction: 6119/20016 Out of bounds for computation -> 1.03674[0.001,0.5]
Interaction: 6120/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 6121/20016 Out of bounds for computation -> 0.700008[0.001,0.5]
6122
Interaction: 6123/20016 Out of bounds for computation -> 0.902245[0.001,0.5]
6124
Interaction: 6125/20016 Out of bounds for computation -> 0.674597[0.001,0.5]
6126
Interaction: 6127/20016 Out of bounds for computation -> 0.565131[0.001,0.5]
6128
Interaction: 6129/20016 Out of bounds for computation -> 0.613852[0.001,0.5]
Interaction: 6130/20016 Out of bounds for computation -> 2.35336[0.001,0.5]
6131
Interaction: 6132/20016 Out of bounds for computation -> 1.7523[0.001,0.5]
Interaction: 6133/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 6134/20016 Out of bounds for computation -> 0.671682[0.001,0.5]
6135
Interaction: 6136/20016 Out of bounds for computation -> 1.3919[0.001,0.5]
Interaction: 6137/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 6138/20016 Out of bounds for computation -> 1.98084[0.001,0.5]
Interaction: 6139/20016 Out of bounds for computation -> nan[0.001,0.5]
6140
Interaction: 6141/20016 Out of bounds for computation -> 0.856944[0.001,0.5]
Interaction: 6142/20016 Out of bounds for computation -> 2.31109[0.001,0.5]
Interaction: 6143/20016 Out of bounds for computation -> 0.788539[0.001,0.5]
Interaction: 6144/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 6145/20016 Out of bounds for computation -> 1.91649[0.001,0.5]
6146
6147
Interaction: 6148/20016 Out of bounds for computation -> nan[0.001,0.5]
6149
Interaction: 6150/20016 Out of bounds for computation -> 2.7013[0.001,0.5]
6151
6152
6153
6154
Interaction: 6155/20016 Out of bounds for computation -> 0.957782[0.001,0.5]
Interaction: 6156/20016 Out of bounds for computation -> 0.55436[0.001,0.5]
Interaction: 6157/20016 Out of bounds for computation -> 0.680155[0.001,0.5]
6158
Interaction: 6159/20016 Out of bounds for computation -> 0.526906[0.001,0.5]
Interaction: 6160/20016 Out of bounds for computation -> 0.597348[0.001,0.5]
6161
6162
Interaction: 6163/20016 Out of bounds for computation -> nan[0.001,0.5]
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
Interaction: 6174/20016 Out of bounds for computation -> 1.95198[0.001,0.5]
6175
Interaction: 6176/20016 Out of bounds for computation -> 2.18698[0.001,0.5]
6177
6178
6179
Interaction: 6180/20016 Out of bounds for computation -> 2.33879[0.001,0.5]
6181
Interaction: 6182/20016 Out of bounds for computation -> 1.70725[0.001,0.5]
6183
Interaction: 6184/20016 Out of bounds for computation -> 1.02507[0.001,0.5]
Interaction: 6185/20016 Out of bounds for computation -> 0.79695[0.001,0.5]
Interaction: 6186/20016 Out of bounds for computation -> 1.42205[0.001,0.5]
Interaction: 6187/20016 Out of bounds for computation -> nan[0.001,0.5]
6188
Interaction: 6189/20016 Out of bounds for computation -> 1.56297[0.001,0.5]
6190
Interaction: 6191/20016 Out of bounds for computation -> 1.30221[0.001,0.5]
6192
6193
Interaction: 6194/20016 Out of bounds for computation -> 0.834453[0.001,0.5]
Interaction: 6195/20016 Out of bounds for computation -> 0.928663[0.001,0.5]
Interaction: 6196/20016 Out of bounds for computation -> 0.880263[0.001,0.5]
6197
Interaction: 6198/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 6199/20016 Out of bounds for computation -> 1.91986[0.001,0.5]
6200
6201
Interaction: 6202/20016 Out of bounds for computation -> 1.57421[0.001,0.5]
Interaction: 6203/20016 Out of bounds for computation -> 1.89999[0.001,0.5]
Interaction: 6204/20016 Out of bounds for computation -> 1.46957[0.001,0.5]
6205
Interaction: 6206/20016 Out of bounds for computation -> 0.770657[0.001,0.5]
Interaction: 6207/20016 Out of bounds for computation -> 0.58764[0.001,0.5]
Interaction: 6208/20016 Out of bounds for computation -> 1.48467[0.001,0.5]
Interaction: 6209/20016 Out of bounds for computation -> 2.11575[0.001,0.5]
6210
6211
6212
Interaction: 6213/20016 Out of bounds for computation -> 0.714939[0.001,0.5]
6214
6215
Interaction: 6216/20016 Out of bounds for computation -> 0.634322[0.001,0.5]
6217
Interaction: 6218/20016 Out of bounds for computation -> 1.5162[0.001,0.5]
Interaction: 6219/20016 Out of bounds for computation -> 0.786308[0.001,0.5]
6220
6221
6222
Interaction: 6223/20016 Out of bounds for computation -> 1.6412[0.001,0.5]
Interaction: 6224/20016 Out of bounds for computation -> 2.11098[0.001,0.5]
6225
Interaction: 6226/20016 Out of bounds for computation -> 1.43707[0.001,0.5]
6227
Interaction: 6228/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 6229/20016 Out of bounds for computation -> 1.25629[0.001,0.5]
Interaction: 6230/20016 Out of bounds for computation -> 0.699397[0.001,0.5]
6231
6232
Interaction: 6233/20016 Out of bounds for computation -> 2.07024[0.001,0.5]
6234
Interaction: 6235/20016 Out of bounds for computation -> 0.604382[0.001,0.5]
Interaction: 6236/20016 Out of bounds for computation -> 0.730897[0.001,0.5]
Interaction: 6237/20016 Out of bounds for computation -> 0.553338[0.001,0.5]
6238
6239
Interaction: 6240/20016 Out of bounds for computation -> 1.35233[0.001,0.5]
Interaction: 6241/20016 Out of bounds for computation -> 1.14857[0.001,0.5]
Interaction: 6242/20016 Out of bounds for computation -> 0.583673[0.001,0.5]
6243
Interaction: 6244/20016 Out of bounds for computation -> 1.10602[0.001,0.5]
Interaction: 6245/20016 Out of bounds for computation -> 1.29105[0.001,0.5]
6246
6247
6248
Interaction: 6249/20016 Out of bounds for computation -> 2.39358[0.001,0.5]
6250
Interaction: 6251/20016 Out of bounds for computation -> 1.86677[0.001,0.5]
6252
Interaction: 6253/20016 Out of bounds for computation -> 0.680323[0.001,0.5]
6254
6255
Interaction: 6256/20016 Out of bounds for computation -> 2.75335[0.001,0.5]
6257
Interaction: 6258/20016 Out of bounds for computation -> 1.95341[0.001,0.5]
Interaction: 6259/20016 Out of bounds for computation -> nan[0.001,0.5]
6260
6261
6262
6263
6264
Interaction: 6265/20016 Out of bounds for computation -> 0.906102[0.001,0.5]
Interaction: 6266/20016 Out of bounds for computation -> 1.69292[0.001,0.5]
6267
Interaction: 6268/20016 Out of bounds for computation -> nan[0.001,0.5]
6269
6270
Interaction: 6271/20016 Out of bounds for computation -> 2.04897[0.001,0.5]
Interaction: 6272/20016 Out of bounds for computation -> 0.796448[0.001,0.5]
Interaction: 6273/20016 Out of bounds for computation -> 0.803216[0.001,0.5]
Interaction: 6274/20016 Out of bounds for computation -> 1.16754[0.001,0.5]
6275
Interaction: 6276/20016 Out of bounds for computation -> 1.13546[0.001,0.5]
Interaction: 6277/20016 Out of bounds for computation -> 0.994161[0.001,0.5]
Interaction: 6278/20016 Out of bounds for computation -> 0.975085[0.001,0.5]
6279
Interaction: 6280/20016 Out of bounds for computation -> 0.821263[0.001,0.5]
Interaction: 6281/20016 Out of bounds for computation -> 1.93972[0.001,0.5]
Interaction: 6282/20016 Out of bounds for computation -> 0.568816[0.001,0.5]
Interaction: 6283/20016 Out of bounds for computation -> 1.05161[0.001,0.5]
Interaction: 6284/20016 Out of bounds for computation -> 2.91723[0.001,0.5]
6285
Interaction: 6286/20016 Out of bounds for computation -> 0.543796[0.001,0.5]
6287
6288
Interaction: 6289/20016 Out of bounds for computation -> 1.94821[0.001,0.5]
6290
6291
Interaction: 6292/20016 Out of bounds for computation -> 0.579858[0.001,0.5]
Interaction: 6293/20016 Out of bounds for computation -> 2.10296[0.001,0.5]
6294
6295
6296
6297
6298
Interaction: 6299/20016 Out of bounds for computation -> 0.540381[0.001,0.5]
6300
Interaction: 6301/20016 Out of bounds for computation -> 0.759795[0.001,0.5]
Interaction: 6302/20016 Out of bounds for computation -> 1.96367[0.001,0.5]
Interaction: 6303/20016 Out of bounds for computation -> 1.47017[0.001,0.5]
Interaction: 6304/20016 Out of bounds for computation -> 2.48697[0.001,0.5]
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
Interaction: 6321/20016 Out of bounds for computation -> 0.700479[0.001,0.5]
6322
6323
6324
6325
6326
6327
Interaction: 6328/20016 Out of bounds for computation -> 1.31887[0.001,0.5]
6329
6330
6331
Interaction: 6332/20016 Out of bounds for computation -> 0.583861[0.001,0.5]
Interaction: 6333/20016 Out of bounds for computation -> 2.83113[0.001,0.5]
6334
Interaction: 6335/20016 Out of bounds for computation -> 1.11502[0.001,0.5]
Interaction: 6336/20016 Out of bounds for computation -> 1.34059[0.001,0.5]
Interaction: 6337/20016 Out of bounds for computation -> nan[0.001,0.5]
6338
6339
6340
6341
6342
6343
6344
6345
Interaction: 6346/20016 Out of bounds for computation -> 2.62959[0.001,0.5]
6347
6348
6349
Interaction: 6350/20016 Out of bounds for computation -> 0.949321[0.001,0.5]
6351
Interaction: 6352/20016 Out of bounds for computation -> 2.08548[0.001,0.5]
Interaction: 6353/20016 Out of bounds for computation -> 1.28075[0.001,0.5]
6354
Interaction: 6355/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 6356/20016 Out of bounds for computation -> 0.566932[0.001,0.5]
Interaction: 6357/20016 Out of bounds for computation -> 1.25555[0.001,0.5]
Interaction: 6358/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 6359/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 6360/20016 Out of bounds for computation -> 0.630483[0.001,0.5]
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
Interaction: 6371/20016 Out of bounds for computation -> 0.736166[0.001,0.5]
Interaction: 6372/20016 Out of bounds for computation -> 2.2987[0.001,0.5]
6373
6374
6375
6376
6377
6378
6379
6380
Interaction: 6381/20016 Out of bounds for computation -> 0.972521[0.001,0.5]
6382
Interaction: 6383/20016 Out of bounds for computation -> 0.870474[0.001,0.5]
Interaction: 6384/20016 Out of bounds for computation -> 1.45487[0.001,0.5]
6385
6386
6387
6388
Interaction: 6389/20016 Out of bounds for computation -> 0.552949[0.001,0.5]
Interaction: 6390/20016 Out of bounds for computation -> 0.719467[0.001,0.5]
Interaction: 6391/20016 Out of bounds for computation -> 0.909095[0.001,0.5]
Interaction: 6392/20016 Out of bounds for computation -> 0.637389[0.001,0.5]
Interaction: 6393/20016 Out of bounds for computation -> 0.521531[0.001,0.5]
Interaction: 6394/20016 Out of bounds for computation -> 1.89547[0.001,0.5]
Interaction: 6395/20016 Out of bounds for computation -> 0.6159[0.001,0.5]
6396
Interaction: 6397/20016 Out of bounds for computation -> 1.0277[0.001,0.5]
6398
Interaction: 6399/20016 Out of bounds for computation -> 2.20621[0.001,0.5]
Interaction: 6400/20016 Out of bounds for computation -> 0.940855[0.001,0.5]
Interaction: 6401/20016 Out of bounds for computation -> 1.45012[0.001,0.5]
Interaction: 6402/20016 Out of bounds for computation -> 1.44701[0.001,0.5]
6403
Interaction: 6404/20016 Out of bounds for computation -> 1.54627[0.001,0.5]
Interaction: 6405/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 6406/20016 Out of bounds for computation -> 1.11532[0.001,0.5]
6407
6408
Interaction: 6409/20016 Out of bounds for computation -> 1.9183[0.001,0.5]
Interaction: 6410/20016 Out of bounds for computation -> 0.600271[0.001,0.5]
6411
6412
Interaction: 6413/20016 Out of bounds for computation -> 2.16406[0.001,0.5]
Interaction: 6414/20016 Out of bounds for computation -> 0.751858[0.001,0.5]
6415
Interaction: 6416/20016 Out of bounds for computation -> nan[0.001,0.5]
6417
Interaction: 6418/20016 Out of bounds for computation -> 1.4414[0.001,0.5]
Interaction: 6419/20016 Out of bounds for computation -> 2.31341[0.001,0.5]
Interaction: 6420/20016 Out of bounds for computation -> 0.970113[0.001,0.5]
6421
Interaction: 6422/20016 Out of bounds for computation -> 1.4201[0.001,0.5]
6423
Interaction: 6424/20016 Out of bounds for computation -> 0.852093[0.001,0.5]
6425
Interaction: 6426/20016 Out of bounds for computation -> 0.995135[0.001,0.5]
Interaction: 6427/20016 Out of bounds for computation -> 1.92251[0.001,0.5]
Interaction: 6428/20016 Out of bounds for computation -> 1.86711[0.001,0.5]
6429
6430
6431
6432
Interaction: 6433/20016 Out of bounds for computation -> 1.4858[0.001,0.5]
6434
6435
6436
Interaction: 6437/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 6438/20016 Out of bounds for computation -> nan[0.001,0.5]
6439
6440
Interaction: 6441/20016 Out of bounds for computation -> 0.785158[0.001,0.5]
6442
Interaction: 6443/20016 Out of bounds for computation -> 1.91386[0.001,0.5]
6444
6445
6446
6447
Interaction: 6448/20016 Out of bounds for computation -> 1.64787[0.001,0.5]
Interaction: 6449/20016 Out of bounds for computation -> 0.778465[0.001,0.5]
Interaction: 6450/20016 Out of bounds for computation -> 0.832846[0.001,0.5]
6451
Interaction: 6452/20016 Out of bounds for computation -> 1.38414[0.001,0.5]
6453
6454
Interaction: 6455/20016 Out of bounds for computation -> 0.527651[0.001,0.5]
6456
Interaction: 6457/20016 Out of bounds for computation -> 0.93733[0.001,0.5]
Interaction: 6458/20016 Out of bounds for computation -> 0.532426[0.001,0.5]
6459
6460
6461
Interaction: 6462/20016 Out of bounds for computation -> 2.73536[0.001,0.5]
Interaction: 6463/20016 Out of bounds for computation -> 0.512522[0.001,0.5]
6464
6465
Interaction: 6466/20016 Out of bounds for computation -> 0.516943[0.001,0.5]
6467
Interaction: 6468/20016 Out of bounds for computation -> 0.625569[0.001,0.5]
Interaction: 6469/20016 Out of bounds for computation -> 0.673175[0.001,0.5]
Interaction: 6470/20016 Out of bounds for computation -> 1.96732[0.001,0.5]
6471
Interaction: 6472/20016 Out of bounds for computation -> nan[0.001,0.5]
6473
Interaction: 6474/20016 Out of bounds for computation -> 0.885066[0.001,0.5]
6475
6476
6477
Interaction: 6478/20016 Out of bounds for computation -> 0.54169[0.001,0.5]
6479
Interaction: 6480/20016 Out of bounds for computation -> 1.84[0.001,0.5]
Interaction: 6481/20016 Out of bounds for computation -> 0.646[0.001,0.5]
6482
6483
6484
6485
6486
Interaction: 6487/20016 Out of bounds for computation -> 1.91263[0.001,0.5]
Interaction: 6488/20016 Out of bounds for computation -> 0.878676[0.001,0.5]
6489
6490
6491
6492
Interaction: 6493/20016 Out of bounds for computation -> 0.517801[0.001,0.5]
Interaction: 6494/20016 Out of bounds for computation -> 1.47091[0.001,0.5]
Interaction: 6495/20016 Out of bounds for computation -> 1.72946[0.001,0.5]
6496
Interaction: 6497/20016 Out of bounds for computation -> 1.93928[0.001,0.5]
6498
Interaction: 6499/20016 Out of bounds for computation -> 1.63666[0.001,0.5]
Interaction: 6500/20016 Out of bounds for computation -> 1.81619[0.001,0.5]
6501
6502
Interaction: 6503/20016 Out of bounds for computation -> 1.72344[0.001,0.5]
Interaction: 6504/20016 Out of bounds for computation -> 2.01973[0.001,0.5]
Interaction: 6505/20016 Out of bounds for computation -> 1.48891[0.001,0.5]
6506
6507
6508
6509
6510
Interaction: 6511/20016 Out of bounds for computation -> 0.564931[0.001,0.5]
6512
6513
Interaction: 6514/20016 Out of bounds for computation -> 0.663869[0.001,0.5]
6515
Interaction: 6516/20016 Out of bounds for computation -> 1.49766[0.001,0.5]
6517
Interaction: 6518/20016 Out of bounds for computation -> nan[0.001,0.5]
6519
6520
Interaction: 6521/20016 Out of bounds for computation -> 2.96392[0.001,0.5]
6522
Interaction: 6523/20016 Out of bounds for computation -> 1.8479[0.001,0.5]
Interaction: 6524/20016 Out of bounds for computation -> 0.840937[0.001,0.5]
Interaction: 6525/20016 Out of bounds for computation -> 0.847308[0.001,0.5]
Interaction: 6526/20016 Out of bounds for computation -> 1.48457[0.001,0.5]
6527
6528
6529
6530
6531
6532
6533
6534
6535
Interaction: 6536/20016 Out of bounds for computation -> 0.683207[0.001,0.5]
6537
Interaction: 6538/20016 Out of bounds for computation -> 0.65025[0.001,0.5]
6539
6540
6541
Interaction: 6542/20016 Out of bounds for computation -> 1.23305[0.001,0.5]
Interaction: 6543/20016 Out of bounds for computation -> 0.589315[0.001,0.5]
Interaction: 6544/20016 Out of bounds for computation -> 2.41361[0.001,0.5]
Interaction: 6545/20016 Out of bounds for computation -> 1.92694[0.001,0.5]
6546
6547
6548
6549
Interaction: 6550/20016 Out of bounds for computation -> 0.666737[0.001,0.5]
6551
6552
6553
6554
6555
6556
6557
Interaction: 6558/20016 Out of bounds for computation -> 0.640026[0.001,0.5]
Interaction: 6559/20016 Out of bounds for computation -> 0.709471[0.001,0.5]
Interaction: 6560/20016 Out of bounds for computation -> 0.934128[0.001,0.5]
Interaction: 6561/20016 Out of bounds for computation -> 2.03277[0.001,0.5]
Interaction: 6562/20016 Out of bounds for computation -> nan[0.001,0.5]
6563
Interaction: 6564/20016 Out of bounds for computation -> 2.40788[0.001,0.5]
6565
6566
6567
Interaction: 6568/20016 Out of bounds for computation -> 0.755129[0.001,0.5]
6569
6570
6571
6572
6573
6574
6575
Interaction: 6576/20016 Out of bounds for computation -> 2.33155[0.001,0.5]
6577
6578
6579
Interaction: 6580/20016 Out of bounds for computation -> 2.84543[0.001,0.5]
6581
6582
Interaction: 6583/20016 Out of bounds for computation -> 1.74802[0.001,0.5]
Interaction: 6584/20016 Out of bounds for computation -> 2.22248[0.001,0.5]
Interaction: 6585/20016 Out of bounds for computation -> 0.52926[0.001,0.5]
Interaction: 6586/20016 Out of bounds for computation -> 0.673393[0.001,0.5]
6587
6588
6589
Interaction: 6590/20016 Out of bounds for computation -> 0.754851[0.001,0.5]
Interaction: 6591/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 6592/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 6593/20016 Out of bounds for computation -> 2.05372[0.001,0.5]
6594
6595
6596
Interaction: 6597/20016 Out of bounds for computation -> nan[0.001,0.5]
6598
Interaction: 6599/20016 Out of bounds for computation -> 1.42512[0.001,0.5]
6600
6601
6602
Interaction: 6603/20016 Out of bounds for computation -> 1.53108[0.001,0.5]
6604
Interaction: 6605/20016 Out of bounds for computation -> nan[0.001,0.5]
6606
Interaction: 6607/20016 Out of bounds for computation -> 0.685093[0.001,0.5]
6608
6609
Interaction: 6610/20016 Out of bounds for computation -> 1.40193[0.001,0.5]
6611
6612
6613
Interaction: 6614/20016 Out of bounds for computation -> 0.515633[0.001,0.5]
6615
Interaction: 6616/20016 Out of bounds for computation -> 2.12161[0.001,0.5]
6617
6618
6619
6620
Interaction: 6621/20016 Out of bounds for computation -> 1.48067[0.001,0.5]
Interaction: 6622/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 6623/20016 Out of bounds for computation -> 1.50164[0.001,0.5]
6624
6625
Interaction: 6626/20016 Out of bounds for computation -> 0.62236[0.001,0.5]
6627
Interaction: 6628/20016 Out of bounds for computation -> 1.76116[0.001,0.5]
Interaction: 6629/20016 Out of bounds for computation -> 0.751091[0.001,0.5]
Interaction: 6630/20016 Out of bounds for computation -> 0.690255[0.001,0.5]
Interaction: 6631/20016 Out of bounds for computation -> 0.58023[0.001,0.5]
Interaction: 6632/20016 Out of bounds for computation -> 1.34738[0.001,0.5]
Interaction: 6633/20016 Out of bounds for computation -> 1.53336[0.001,0.5]
6634
6635
Interaction: 6636/20016 Out of bounds for computation -> 0.597771[0.001,0.5]
Interaction: 6637/20016 Out of bounds for computation -> 0.507751[0.001,0.5]
Interaction: 6638/20016 Out of bounds for computation -> 0.756715[0.001,0.5]
Interaction: 6639/20016 Out of bounds for computation -> 1.18937[0.001,0.5]
6640
6641
6642
Interaction: 6643/20016 Out of bounds for computation -> nan[0.001,0.5]
6644
Interaction: 6645/20016 Out of bounds for computation -> nan[0.001,0.5]
6646
Interaction: 6647/20016 Out of bounds for computation -> 0.706697[0.001,0.5]
6648
6649
Interaction: 6650/20016 Out of bounds for computation -> 1.6075[0.001,0.5]
Interaction: 6651/20016 Out of bounds for computation -> 0.634719[0.001,0.5]
6652
Interaction: 6653/20016 Out of bounds for computation -> 2.00092[0.001,0.5]
6654
6655
6656
6657
Interaction: 6658/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 6659/20016 Out of bounds for computation -> 1.52434[0.001,0.5]
6660
6661
6662
6663
6664
6665
Interaction: 6666/20016 Out of bounds for computation -> 2.8901[0.001,0.5]
Interaction: 6667/20016 Out of bounds for computation -> 0.672187[0.001,0.5]
6668
6669
6670
6671
6672
6673
Interaction: 6674/20016 Out of bounds for computation -> 0.546867[0.001,0.5]
6675
Interaction: 6676/20016 Out of bounds for computation -> nan[0.001,0.5]
6677
Interaction: 6678/20016 Out of bounds for computation -> 0.790753[0.001,0.5]
6679
6680
6681
6682
6683
Interaction: 6684/20016 Out of bounds for computation -> 1.83389[0.001,0.5]
Interaction: 6685/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 6686/20016 Out of bounds for computation -> 0.675126[0.001,0.5]
6687
Interaction: 6688/20016 Out of bounds for computation -> 0.8246[0.001,0.5]
Interaction: 6689/20016 Out of bounds for computation -> 2.30465[0.001,0.5]
Interaction: 6690/20016 Out of bounds for computation -> 3.05365[0.001,0.5]
6691
Interaction: 6692/20016 Out of bounds for computation -> 1.6414[0.001,0.5]
6693
6694
6695
Interaction: 6696/20016 Out of bounds for computation -> nan[0.001,0.5]
6697
6698
6699
Interaction: 6700/20016 Out of bounds for computation -> 0.524769[0.001,0.5]
6701
6702
6703
6704
6705
6706
6707
Interaction: 6708/20016 Out of bounds for computation -> 0.500999[0.001,0.5]
Interaction: 6709/20016 Out of bounds for computation -> 1.42929[0.001,0.5]
Interaction: 6710/20016 Out of bounds for computation -> 0.564983[0.001,0.5]
6711
6712
6713
Interaction: 6714/20016 Out of bounds for computation -> 0.848181[0.001,0.5]
Interaction: 6715/20016 Out of bounds for computation -> 0.89688[0.001,0.5]
Interaction: 6716/20016 Out of bounds for computation -> 1.78158[0.001,0.5]
Interaction: 6717/20016 Out of bounds for computation -> 0.533619[0.001,0.5]
6718
Interaction: 6719/20016 Out of bounds for computation -> 0.697324[0.001,0.5]
Interaction: 6720/20016 Out of bounds for computation -> 2.39532[0.001,0.5]
6721
6722
6723
6724
Interaction: 6725/20016 Out of bounds for computation -> 1.74962[0.001,0.5]
6726
Interaction: 6727/20016 Out of bounds for computation -> 0.575403[0.001,0.5]
6728
Interaction: 6729/20016 Out of bounds for computation -> nan[0.001,0.5]
6730
6731
6732
6733
6734
Interaction: 6735/20016 Out of bounds for computation -> 0.539546[0.001,0.5]
Interaction: 6736/20016 Out of bounds for computation -> 1.93497[0.001,0.5]
6737
Interaction: 6738/20016 Out of bounds for computation -> 1.51992[0.001,0.5]
6739
6740
6741
Interaction: 6742/20016 Out of bounds for computation -> 1.60108[0.001,0.5]
Interaction: 6743/20016 Out of bounds for computation -> 0.907777[0.001,0.5]
Interaction: 6744/20016 Out of bounds for computation -> 1.70712[0.001,0.5]
6745
Interaction: 6746/20016 Out of bounds for computation -> 1.17244[0.001,0.5]
6747
6748
Interaction: 6749/20016 Out of bounds for computation -> 0.759787[0.001,0.5]
Interaction: 6750/20016 Out of bounds for computation -> 0.61179[0.001,0.5]
6751
6752
Interaction: 6753/20016 Out of bounds for computation -> 1.46757[0.001,0.5]
6754
Interaction: 6755/20016 Out of bounds for computation -> 2.39304[0.001,0.5]
6756
6757
6758
Interaction: 6759/20016 Out of bounds for computation -> 1.83613[0.001,0.5]
Interaction: 6760/20016 Out of bounds for computation -> 0.599824[0.001,0.5]
Interaction: 6761/20016 Out of bounds for computation -> nan[0.001,0.5]
6762
6763
Interaction: 6764/20016 Out of bounds for computation -> 1.5722[0.001,0.5]
6765
6766
6767
Interaction: 6768/20016 Out of bounds for computation -> 0.651067[0.001,0.5]
6769
Interaction: 6770/20016 Out of bounds for computation -> 0.574484[0.001,0.5]
6771
Interaction: 6772/20016 Out of bounds for computation -> 0.608433[0.001,0.5]
Interaction: 6773/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 6774/20016 Out of bounds for computation -> 1.37312[0.001,0.5]
6775
6776
Interaction: 6777/20016 Out of bounds for computation -> 1.40039[0.001,0.5]
6778
Interaction: 6779/20016 Out of bounds for computation -> 1.44271[0.001,0.5]
6780
6781
Interaction: 6782/20016 Out of bounds for computation -> 0.597273[0.001,0.5]
6783
Interaction: 6784/20016 Out of bounds for computation -> 2.13515[0.001,0.5]
6785
Interaction: 6786/20016 Out of bounds for computation -> 1.74666[0.001,0.5]
6787
Interaction: 6788/20016 Out of bounds for computation -> 0.724595[0.001,0.5]
6789
Interaction: 6790/20016 Out of bounds for computation -> 0.735852[0.001,0.5]
6791
6792
Interaction: 6793/20016 Out of bounds for computation -> 2.34392[0.001,0.5]
6794
6795
Interaction: 6796/20016 Out of bounds for computation -> 1.93162[0.001,0.5]
Interaction: 6797/20016 Out of bounds for computation -> 1.26815[0.001,0.5]
Interaction: 6798/20016 Out of bounds for computation -> 0.663941[0.001,0.5]
6799
Interaction: 6800/20016 Out of bounds for computation -> 1.74809[0.001,0.5]
6801
6802
Interaction: 6803/20016 Out of bounds for computation -> 1.25458[0.001,0.5]
6804
6805
Interaction: 6806/20016 Out of bounds for computation -> 0.637866[0.001,0.5]
6807
6808
6809
Interaction: 6810/20016 Out of bounds for computation -> 1.45543[0.001,0.5]
Interaction: 6811/20016 Out of bounds for computation -> 0.648701[0.001,0.5]
Interaction: 6812/20016 Out of bounds for computation -> 0.555578[0.001,0.5]
Interaction: 6813/20016 Out of bounds for computation -> 0.573201[0.001,0.5]
Interaction: 6814/20016 Out of bounds for computation -> nan[0.001,0.5]
6815
6816
Interaction: 6817/20016 Out of bounds for computation -> 1.65739[0.001,0.5]
6818
Interaction: 6819/20016 Out of bounds for computation -> 0.619513[0.001,0.5]
Interaction: 6820/20016 Out of bounds for computation -> 1.60819[0.001,0.5]
Interaction: 6821/20016 Out of bounds for computation -> 1.21541[0.001,0.5]
6822
6823
Interaction: 6824/20016 Out of bounds for computation -> 1.03237[0.001,0.5]
Interaction: 6825/20016 Out of bounds for computation -> 0.771509[0.001,0.5]
6826
6827
Interaction: 6828/20016 Out of bounds for computation -> 2.74811[0.001,0.5]
6829
Interaction: 6830/20016 Out of bounds for computation -> 0.652276[0.001,0.5]
6831
Interaction: 6832/20016 Out of bounds for computation -> 1.45536[0.001,0.5]
6833
Interaction: 6834/20016 Out of bounds for computation -> 1.69744[0.001,0.5]
6835
Interaction: 6836/20016 Out of bounds for computation -> 0.504994[0.001,0.5]
Interaction: 6837/20016 Out of bounds for computation -> 0.622699[0.001,0.5]
6838
6839
Interaction: 6840/20016 Out of bounds for computation -> 1.21913[0.001,0.5]
6841
6842
6843
Interaction: 6844/20016 Out of bounds for computation -> 0.829039[0.001,0.5]
6845
6846
6847
Interaction: 6848/20016 Out of bounds for computation -> 1.47255[0.001,0.5]
6849
6850
Interaction: 6851/20016 Out of bounds for computation -> 0.926124[0.001,0.5]
6852
Interaction: 6853/20016 Out of bounds for computation -> 0.743792[0.001,0.5]
Interaction: 6854/20016 Out of bounds for computation -> 2.23675[0.001,0.5]
Interaction: 6855/20016 Out of bounds for computation -> 2.3606[0.001,0.5]
Interaction: 6856/20016 Out of bounds for computation -> 0.572345[0.001,0.5]
Interaction: 6857/20016 Out of bounds for computation -> 1.03197[0.001,0.5]
Interaction: 6858/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 6859/20016 Out of bounds for computation -> 0.601603[0.001,0.5]
Interaction: 6860/20016 Out of bounds for computation -> 2.40237[0.001,0.5]
6861
6862
6863
6864
6865
Interaction: 6866/20016 Out of bounds for computation -> 1.82623[0.001,0.5]
6867
6868
Interaction: 6869/20016 Out of bounds for computation -> nan[0.001,0.5]
6870
6871
6872
6873
6874
6875
Interaction: 6876/20016 Out of bounds for computation -> 1.92946[0.001,0.5]
Interaction: 6877/20016 Out of bounds for computation -> 2.46751[0.001,0.5]
6878
6879
Interaction: 6880/20016 Out of bounds for computation -> 1.35365[0.001,0.5]
6881
Interaction: 6882/20016 Out of bounds for computation -> 0.621077[0.001,0.5]
Interaction: 6883/20016 Out of bounds for computation -> 0.789904[0.001,0.5]
6884
Interaction: 6885/20016 Out of bounds for computation -> 1.46209[0.001,0.5]
Interaction: 6886/20016 Out of bounds for computation -> 2.17135[0.001,0.5]
6887
6888
6889
Interaction: 6890/20016 Out of bounds for computation -> 1.14341[0.001,0.5]
Interaction: 6891/20016 Out of bounds for computation -> 1.48648[0.001,0.5]
6892
6893
Interaction: 6894/20016 Out of bounds for computation -> 1.42353[0.001,0.5]
6895
6896
6897
Interaction: 6898/20016 Out of bounds for computation -> 1.35961[0.001,0.5]
6899
Interaction: 6900/20016 Out of bounds for computation -> 2.77039[0.001,0.5]
6901
Interaction: 6902/20016 Out of bounds for computation -> 0.553055[0.001,0.5]
Interaction: 6903/20016 Out of bounds for computation -> 2.56331[0.001,0.5]
Interaction: 6904/20016 Out of bounds for computation -> 1.41047[0.001,0.5]
6905
6906
6907
Interaction: 6908/20016 Out of bounds for computation -> nan[0.001,0.5]
6909
6910
Interaction: 6911/20016 Out of bounds for computation -> 2.80568[0.001,0.5]
Interaction: 6912/20016 Out of bounds for computation -> 1.51983[0.001,0.5]
Interaction: 6913/20016 Out of bounds for computation -> 0.671238[0.001,0.5]
Interaction: 6914/20016 Out of bounds for computation -> 1.94099[0.001,0.5]
6915
6916
6917
6918
Interaction: 6919/20016 Out of bounds for computation -> 0.988803[0.001,0.5]
Interaction: 6920/20016 Out of bounds for computation -> 1.08579[0.001,0.5]
Interaction: 6921/20016 Out of bounds for computation -> 0.742177[0.001,0.5]
Interaction: 6922/20016 Out of bounds for computation -> 1.00956[0.001,0.5]
Interaction: 6923/20016 Out of bounds for computation -> 0.986121[0.001,0.5]
Interaction: 6924/20016 Out of bounds for computation -> 1.53872[0.001,0.5]
Interaction: 6925/20016 Out of bounds for computation -> 0.688549[0.001,0.5]
Interaction: 6926/20016 Out of bounds for computation -> nan[0.001,0.5]
6927
6928
Interaction: 6929/20016 Out of bounds for computation -> 1.54682[0.001,0.5]
Interaction: 6930/20016 Out of bounds for computation -> 1.69293[0.001,0.5]
6931
6932
6933
6934
6935
Interaction: 6936/20016 Out of bounds for computation -> 0.688589[0.001,0.5]
6937
6938
6939
6940
6941
6942
Interaction: 6943/20016 Out of bounds for computation -> 0.939421[0.001,0.5]
6944
6945
6946
6947
Interaction: 6948/20016 Out of bounds for computation -> 1.19782[0.001,0.5]
6949
6950
Interaction: 6951/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 6952/20016 Out of bounds for computation -> nan[0.001,0.5]
6953
6954
6955
Interaction: 6956/20016 Out of bounds for computation -> 1.00363[0.001,0.5]
6957
6958
6959
Interaction: 6960/20016 Out of bounds for computation -> 1.48628[0.001,0.5]
Interaction: 6961/20016 Out of bounds for computation -> 1.42129[0.001,0.5]
Interaction: 6962/20016 Out of bounds for computation -> 0.563598[0.001,0.5]
Interaction: 6963/20016 Out of bounds for computation -> 1.62612[0.001,0.5]
6964
6965
6966
6967
6968
Interaction: 6969/20016 Out of bounds for computation -> 1.13884[0.001,0.5]
Interaction: 6970/20016 Out of bounds for computation -> 0.778526[0.001,0.5]
Interaction: 6971/20016 Out of bounds for computation -> 0.662027[0.001,0.5]
Interaction: 6972/20016 Out of bounds for computation -> 1.38191[0.001,0.5]
6973
6974
6975
Interaction: 6976/20016 Out of bounds for computation -> 0.920194[0.001,0.5]
Interaction: 6977/20016 Out of bounds for computation -> 0.604529[0.001,0.5]
Interaction: 6978/20016 Out of bounds for computation -> 0.723488[0.001,0.5]
6979
Interaction: 6980/20016 Out of bounds for computation -> 1.30669[0.001,0.5]
Interaction: 6981/20016 Out of bounds for computation -> nan[0.001,0.5]
6982
6983
Interaction: 6984/20016 Out of bounds for computation -> 0.504712[0.001,0.5]
6985
Interaction: 6986/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 6987/20016 Out of bounds for computation -> nan[0.001,0.5]
6988
6989
6990
Interaction: 6991/20016 Out of bounds for computation -> 0.613943[0.001,0.5]
Interaction: 6992/20016 Out of bounds for computation -> 2.35934[0.001,0.5]
6993
Interaction: 6994/20016 Out of bounds for computation -> 0.629634[0.001,0.5]
Interaction: 6995/20016 Out of bounds for computation -> 0.585416[0.001,0.5]
Interaction: 6996/20016 Out of bounds for computation -> 1.44362[0.001,0.5]
6997
6998
Interaction: 6999/20016 Out of bounds for computation -> 1.57779[0.001,0.5]
7000
7001
Interaction: 7002/20016 Out of bounds for computation -> 1.22097[0.001,0.5]
7003
Interaction: 7004/20016 Out of bounds for computation -> 0.569926[0.001,0.5]
Interaction: 7005/20016 Out of bounds for computation -> 0.758148[0.001,0.5]
Interaction: 7006/20016 Out of bounds for computation -> 0.584378[0.001,0.5]
7007
7008
Interaction: 7009/20016 Out of bounds for computation -> 0.903321[0.001,0.5]
7010
Interaction: 7011/20016 Out of bounds for computation -> 1.49928[0.001,0.5]
7012
Interaction: 7013/20016 Out of bounds for computation -> 0.525217[0.001,0.5]
7014
Interaction: 7015/20016 Out of bounds for computation -> 0.57113[0.001,0.5]
Interaction: 7016/20016 Out of bounds for computation -> 1.06484[0.001,0.5]
7017
7018
Interaction: 7019/20016 Out of bounds for computation -> 0.791649[0.001,0.5]
7020
Interaction: 7021/20016 Out of bounds for computation -> 1.62575[0.001,0.5]
Interaction: 7022/20016 Out of bounds for computation -> 2.00151[0.001,0.5]
Interaction: 7023/20016 Out of bounds for computation -> 0.536094[0.001,0.5]
7024
Interaction: 7025/20016 Out of bounds for computation -> nan[0.001,0.5]
7026
Interaction: 7027/20016 Out of bounds for computation -> 2.10366[0.001,0.5]
Interaction: 7028/20016 Out of bounds for computation -> 1.4807[0.001,0.5]
Interaction: 7029/20016 Out of bounds for computation -> 1.18165[0.001,0.5]
Interaction: 7030/20016 Out of bounds for computation -> 0.535762[0.001,0.5]
Interaction: 7031/20016 Out of bounds for computation -> 0.725538[0.001,0.5]
7032
Interaction: 7033/20016 Out of bounds for computation -> 1.52849[0.001,0.5]
7034
7035
7036
Interaction: 7037/20016 Out of bounds for computation -> 2.08537[0.001,0.5]
7038
Interaction: 7039/20016 Out of bounds for computation -> 2.45343[0.001,0.5]
Interaction: 7040/20016 Out of bounds for computation -> 2.43894[0.001,0.5]
Interaction: 7041/20016 Out of bounds for computation -> 0.551239[0.001,0.5]
7042
7043
Interaction: 7044/20016 Out of bounds for computation -> 1.76868[0.001,0.5]
7045
Interaction: 7046/20016 Out of bounds for computation -> 0.797835[0.001,0.5]
7047
7048
7049
7050
7051
Interaction: 7052/20016 Out of bounds for computation -> 1.46205[0.001,0.5]
Interaction: 7053/20016 Out of bounds for computation -> 1.62893[0.001,0.5]
7054
Interaction: 7055/20016 Out of bounds for computation -> 2.16522[0.001,0.5]
7056
7057
7058
Interaction: 7059/20016 Out of bounds for computation -> 0.609447[0.001,0.5]
Interaction: 7060/20016 Out of bounds for computation -> nan[0.001,0.5]
7061
7062
7063
Interaction: 7064/20016 Out of bounds for computation -> 0.66766[0.001,0.5]
7065
Interaction: 7066/20016 Out of bounds for computation -> 0.503785[0.001,0.5]
7067
Interaction: 7068/20016 Out of bounds for computation -> 0.747823[0.001,0.5]
7069
Interaction: 7070/20016 Out of bounds for computation -> 0.513336[0.001,0.5]
Interaction: 7071/20016 Out of bounds for computation -> 0.645342[0.001,0.5]
7072
Interaction: 7073/20016 Out of bounds for computation -> 0.873211[0.001,0.5]
Interaction: 7074/20016 Out of bounds for computation -> 1.18421[0.001,0.5]
Interaction: 7075/20016 Out of bounds for computation -> 1.65025[0.001,0.5]
Interaction: 7076/20016 Out of bounds for computation -> 2.1351[0.001,0.5]
7077
7078
7079
Interaction: 7080/20016 Out of bounds for computation -> 1.86244[0.001,0.5]
7081
Interaction: 7082/20016 Out of bounds for computation -> 2.57166[0.001,0.5]
7083
Interaction: 7084/20016 Out of bounds for computation -> 1.40962[0.001,0.5]
Interaction: 7085/20016 Out of bounds for computation -> 2.19065[0.001,0.5]
7086
7087
Interaction: 7088/20016 Out of bounds for computation -> 1.82726[0.001,0.5]
7089
7090
7091
7092
Interaction: 7093/20016 Out of bounds for computation -> 2.52424[0.001,0.5]
7094
Interaction: 7095/20016 Out of bounds for computation -> 1.9286[0.001,0.5]
Interaction: 7096/20016 Out of bounds for computation -> 0.542551[0.001,0.5]
7097
Interaction: 7098/20016 Out of bounds for computation -> 0.579005[0.001,0.5]
7099
7100
Interaction: 7101/20016 Out of bounds for computation -> 0.812149[0.001,0.5]
7102
Interaction: 7103/20016 Out of bounds for computation -> 1.42286[0.001,0.5]
7104
Interaction: 7105/20016 Out of bounds for computation -> 0.560403[0.001,0.5]
7106
Interaction: 7107/20016 Out of bounds for computation -> nan[0.001,0.5]
7108
7109
Interaction: 7110/20016 Out of bounds for computation -> 0.595534[0.001,0.5]
7111
7112
Interaction: 7113/20016 Out of bounds for computation -> 1.51931[0.001,0.5]
7114
7115
7116
7117
7118
7119
7120
Interaction: 7121/20016 Out of bounds for computation -> 0.515417[0.001,0.5]
7122
7123
7124
7125
7126
Interaction: 7127/20016 Out of bounds for computation -> 2.71862[0.001,0.5]
7128
7129
7130
Interaction: 7131/20016 Out of bounds for computation -> 2.08439[0.001,0.5]
7132
7133
Interaction: 7134/20016 Out of bounds for computation -> 1.74705[0.001,0.5]
Interaction: 7135/20016 Out of bounds for computation -> 1.67373[0.001,0.5]
7136
7137
7138
7139
7140
Interaction: 7141/20016 Out of bounds for computation -> 1.39695[0.001,0.5]
7142
Interaction: 7143/20016 Out of bounds for computation -> 0.719734[0.001,0.5]
7144
Interaction: 7145/20016 Out of bounds for computation -> 0.607284[0.001,0.5]
Interaction: 7146/20016 Out of bounds for computation -> 0.810408[0.001,0.5]
Interaction: 7147/20016 Out of bounds for computation -> 0.53054[0.001,0.5]
Interaction: 7148/20016 Out of bounds for computation -> 0.586559[0.001,0.5]
7149
Interaction: 7150/20016 Out of bounds for computation -> 0.546627[0.001,0.5]
Interaction: 7151/20016 Out of bounds for computation -> 1.40956[0.001,0.5]
Interaction: 7152/20016 Out of bounds for computation -> 0.515024[0.001,0.5]
7153
7154
Interaction: 7155/20016 Out of bounds for computation -> 0.957728[0.001,0.5]
7156
7157
7158
Interaction: 7159/20016 Out of bounds for computation -> 1.09473[0.001,0.5]
7160
7161
7162
7163
Interaction: 7164/20016 Out of bounds for computation -> 2.32821[0.001,0.5]
7165
7166
Interaction: 7167/20016 Out of bounds for computation -> 3.02302[0.001,0.5]
Interaction: 7168/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 7169/20016 Out of bounds for computation -> 0.987244[0.001,0.5]
7170
7171
7172
7173
7174
7175
Interaction: 7176/20016 Out of bounds for computation -> 0.62894[0.001,0.5]
Interaction: 7177/20016 Out of bounds for computation -> 0.581637[0.001,0.5]
7178
Interaction: 7179/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 7180/20016 Out of bounds for computation -> 0.593273[0.001,0.5]
7181
7182
Interaction: 7183/20016 Out of bounds for computation -> 1.54369[0.001,0.5]
7184
7185
Interaction: 7186/20016 Out of bounds for computation -> nan[0.001,0.5]
7187
7188
7189
Interaction: 7190/20016 Out of bounds for computation -> 2.79056[0.001,0.5]
Interaction: 7191/20016 Out of bounds for computation -> 0.697463[0.001,0.5]
Interaction: 7192/20016 Out of bounds for computation -> 1.45877[0.001,0.5]
7193
7194
Interaction: 7195/20016 Out of bounds for computation -> 2.42468[0.001,0.5]
Interaction: 7196/20016 Out of bounds for computation -> 0.567963[0.001,0.5]
7197
7198
Interaction: 7199/20016 Out of bounds for computation -> 1.06097[0.001,0.5]
7200
Interaction: 7201/20016 Out of bounds for computation -> 1.45377[0.001,0.5]
Interaction: 7202/20016 Out of bounds for computation -> 1.50712[0.001,0.5]
Interaction: 7203/20016 Out of bounds for computation -> 0.595785[0.001,0.5]
Interaction: 7204/20016 Out of bounds for computation -> 1.22516[0.001,0.5]
Interaction: 7205/20016 Out of bounds for computation -> 0.52197[0.001,0.5]
Interaction: 7206/20016 Out of bounds for computation -> 2.4398[0.001,0.5]
Interaction: 7207/20016 Out of bounds for computation -> 0.950792[0.001,0.5]
Interaction: 7208/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 7209/20016 Out of bounds for computation -> 0.89064[0.001,0.5]
Interaction: 7210/20016 Out of bounds for computation -> 0.639995[0.001,0.5]
Interaction: 7211/20016 Out of bounds for computation -> nan[0.001,0.5]
7212
Interaction: 7213/20016 Out of bounds for computation -> 3.06882[0.001,0.5]
7214
7215
7216
7217
7218
Interaction: 7219/20016 Out of bounds for computation -> 2.72413[0.001,0.5]
7220
Interaction: 7221/20016 Out of bounds for computation -> 0.53585[0.001,0.5]
7222
Interaction: 7223/20016 Out of bounds for computation -> 0.726153[0.001,0.5]
Interaction: 7224/20016 Out of bounds for computation -> nan[0.001,0.5]
7225
Interaction: 7226/20016 Out of bounds for computation -> 2.12288[0.001,0.5]
Interaction: 7227/20016 Out of bounds for computation -> 0.785458[0.001,0.5]
7228
Interaction: 7229/20016 Out of bounds for computation -> 0.982033[0.001,0.5]
Interaction: 7230/20016 Out of bounds for computation -> 1.79932[0.001,0.5]
7231
7232
Interaction: 7233/20016 Out of bounds for computation -> 0.636031[0.001,0.5]
7234
7235
Interaction: 7236/20016 Out of bounds for computation -> 1.42014[0.001,0.5]
Interaction: 7237/20016 Out of bounds for computation -> 2.85892[0.001,0.5]
7238
7239
7240
7241
Interaction: 7242/20016 Out of bounds for computation -> 1.78534[0.001,0.5]
7243
Interaction: 7244/20016 Out of bounds for computation -> 1.46356[0.001,0.5]
7245
7246
7247
Interaction: 7248/20016 Out of bounds for computation -> 1.74172[0.001,0.5]
Interaction: 7249/20016 Out of bounds for computation -> nan[0.001,0.5]
7250
Interaction: 7251/20016 Out of bounds for computation -> 1.94668[0.001,0.5]
Interaction: 7252/20016 Out of bounds for computation -> 1.45151[0.001,0.5]
Interaction: 7253/20016 Out of bounds for computation -> 0.762045[0.001,0.5]
7254
7255
Interaction: 7256/20016 Out of bounds for computation -> 2.34644[0.001,0.5]
7257
7258
7259
7260
7261
Interaction: 7262/20016 Out of bounds for computation -> 1.51781[0.001,0.5]
7263
7264
Interaction: 7265/20016 Out of bounds for computation -> 0.709555[0.001,0.5]
7266
7267
Interaction: 7268/20016 Out of bounds for computation -> 2.33278[0.001,0.5]
7269
Interaction: 7270/20016 Out of bounds for computation -> 0.832373[0.001,0.5]
7271
Interaction: 7272/20016 Out of bounds for computation -> 0.865871[0.001,0.5]
7273
7274
Interaction: 7275/20016 Out of bounds for computation -> 0.551453[0.001,0.5]
Interaction: 7276/20016 Out of bounds for computation -> 0.769744[0.001,0.5]
7277
7278
7279
Interaction: 7280/20016 Out of bounds for computation -> 1.98832[0.001,0.5]
Interaction: 7281/20016 Out of bounds for computation -> 0.818708[0.001,0.5]
7282
7283
7284
7285
7286
Interaction: 7287/20016 Out of bounds for computation -> 0.764193[0.001,0.5]
7288
Interaction: 7289/20016 Out of bounds for computation -> 0.566324[0.001,0.5]
Interaction: 7290/20016 Out of bounds for computation -> 0.654823[0.001,0.5]
Interaction: 7291/20016 Out of bounds for computation -> 2.09401[0.001,0.5]
Interaction: 7292/20016 Out of bounds for computation -> 2.09758[0.001,0.5]
Interaction: 7293/20016 Out of bounds for computation -> 0.664282[0.001,0.5]
7294
Interaction: 7295/20016 Out of bounds for computation -> 1.48096[0.001,0.5]
7296
Interaction: 7297/20016 Out of bounds for computation -> 2.24665[0.001,0.5]
Interaction: 7298/20016 Out of bounds for computation -> 0.812097[0.001,0.5]
7299
7300
7301
7302
7303
7304
Interaction: 7305/20016 Out of bounds for computation -> 1.47297[0.001,0.5]
Interaction: 7306/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 7307/20016 Out of bounds for computation -> 0.581106[0.001,0.5]
7308
7309
Interaction: 7310/20016 Out of bounds for computation -> 1.30427[0.001,0.5]
Interaction: 7311/20016 Out of bounds for computation -> 0.974978[0.001,0.5]
Interaction: 7312/20016 Out of bounds for computation -> 2.27453[0.001,0.5]
7313
Interaction: 7314/20016 Out of bounds for computation -> 2.35808[0.001,0.5]
Interaction: 7315/20016 Out of bounds for computation -> 1.83876[0.001,0.5]
7316
Interaction: 7317/20016 Out of bounds for computation -> 1.11815[0.001,0.5]
7318
Interaction: 7319/20016 Out of bounds for computation -> 2.35452[0.001,0.5]
Interaction: 7320/20016 Out of bounds for computation -> 0.936891[0.001,0.5]
7321
Interaction: 7322/20016 Out of bounds for computation -> 2.69059[0.001,0.5]
Interaction: 7323/20016 Out of bounds for computation -> 1.43062[0.001,0.5]
Interaction: 7324/20016 Out of bounds for computation -> 0.891609[0.001,0.5]
Interaction: 7325/20016 Out of bounds for computation -> 2.67225[0.001,0.5]
7326
Interaction: 7327/20016 Out of bounds for computation -> 0.652667[0.001,0.5]
7328
7329
Interaction: 7330/20016 Out of bounds for computation -> 0.630472[0.001,0.5]
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
Interaction: 7341/20016 Out of bounds for computation -> 0.736923[0.001,0.5]
7342
7343
7344
7345
Interaction: 7346/20016 Out of bounds for computation -> 2.0945[0.001,0.5]
7347
7348
7349
Interaction: 7350/20016 Out of bounds for computation -> 1.42911[0.001,0.5]
Interaction: 7351/20016 Out of bounds for computation -> 0.581057[0.001,0.5]
7352
7353
7354
Interaction: 7355/20016 Out of bounds for computation -> 1.42489[0.001,0.5]
7356
7357
Interaction: 7358/20016 Out of bounds for computation -> 0.599384[0.001,0.5]
7359
7360
Interaction: 7361/20016 Out of bounds for computation -> nan[0.001,0.5]
7362
Interaction: 7363/20016 Out of bounds for computation -> 1.50286[0.001,0.5]
7364
7365
7366
Interaction: 7367/20016 Out of bounds for computation -> 0.795534[0.001,0.5]
Interaction: 7368/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 7369/20016 Out of bounds for computation -> 2.28308[0.001,0.5]
7370
Interaction: 7371/20016 Out of bounds for computation -> 2.24943[0.001,0.5]
7372
7373
7374
7375
Interaction: 7376/20016 Out of bounds for computation -> 0.547121[0.001,0.5]
7377
7378
7379
7380
7381
Interaction: 7382/20016 Out of bounds for computation -> 2.43381[0.001,0.5]
Interaction: 7383/20016 Out of bounds for computation -> 0.57952[0.001,0.5]
Interaction: 7384/20016 Out of bounds for computation -> 2.39978[0.001,0.5]
Interaction: 7385/20016 Out of bounds for computation -> 0.511443[0.001,0.5]
7386
7387
7388
Interaction: 7389/20016 Out of bounds for computation -> 2.48852[0.001,0.5]
7390
7391
Interaction: 7392/20016 Out of bounds for computation -> 0.720013[0.001,0.5]
Interaction: 7393/20016 Out of bounds for computation -> 0.901432[0.001,0.5]
7394
7395
7396
Interaction: 7397/20016 Out of bounds for computation -> 0.793611[0.001,0.5]
Interaction: 7398/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 7399/20016 Out of bounds for computation -> 1.392[0.001,0.5]
Interaction: 7400/20016 Out of bounds for computation -> 0.501094[0.001,0.5]
7401
7402
7403
Interaction: 7404/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 7405/20016 Out of bounds for computation -> 0.721484[0.001,0.5]
7406
7407
Interaction: 7408/20016 Out of bounds for computation -> 0.635747[0.001,0.5]
Interaction: 7409/20016 Out of bounds for computation -> 2.33153[0.001,0.5]
7410
7411
7412
7413
7414
Interaction: 7415/20016 Out of bounds for computation -> nan[0.001,0.5]
7416
Interaction: 7417/20016 Out of bounds for computation -> 0.670018[0.001,0.5]
7418
7419
7420
7421
7422
Interaction: 7423/20016 Out of bounds for computation -> 2.46315[0.001,0.5]
7424
Interaction: 7425/20016 Out of bounds for computation -> 0.999281[0.001,0.5]
7426
7427
7428
7429
Interaction: 7430/20016 Out of bounds for computation -> nan[0.001,0.5]
7431
7432
7433
Interaction: 7434/20016 Out of bounds for computation -> 0.516877[0.001,0.5]
7435
Interaction: 7436/20016 Out of bounds for computation -> 1.78479[0.001,0.5]
7437
7438
7439
Interaction: 7440/20016 Out of bounds for computation -> 1.49149[0.001,0.5]
Interaction: 7441/20016 Out of bounds for computation -> 0.566755[0.001,0.5]
Interaction: 7442/20016 Out of bounds for computation -> 1.0313[0.001,0.5]
7443
7444
Interaction: 7445/20016 Out of bounds for computation -> 2.171[0.001,0.5]
Interaction: 7446/20016 Out of bounds for computation -> 1.79353[0.001,0.5]
7447
Interaction: 7448/20016 Out of bounds for computation -> 2.06324[0.001,0.5]
Interaction: 7449/20016 Out of bounds for computation -> 1.04881[0.001,0.5]
7450
7451
7452
Interaction: 7453/20016 Out of bounds for computation -> 0.715672[0.001,0.5]
7454
7455
Interaction: 7456/20016 Out of bounds for computation -> 2.08479[0.001,0.5]
Interaction: 7457/20016 Out of bounds for computation -> 0.712049[0.001,0.5]
7458
Interaction: 7459/20016 Out of bounds for computation -> 2.43722[0.001,0.5]
7460
7461
Interaction: 7462/20016 Out of bounds for computation -> 1.12163[0.001,0.5]
7463
7464
Interaction: 7465/20016 Out of bounds for computation -> nan[0.001,0.5]
7466
7467
7468
7469
7470
Interaction: 7471/20016 Out of bounds for computation -> 2.07217[0.001,0.5]
7472
Interaction: 7473/20016 Out of bounds for computation -> 1.73771[0.001,0.5]
7474
7475
Interaction: 7476/20016 Out of bounds for computation -> 0.91136[0.001,0.5]
7477
Interaction: 7478/20016 Out of bounds for computation -> 2.39156[0.001,0.5]
Interaction: 7479/20016 Out of bounds for computation -> 0.557166[0.001,0.5]
Interaction: 7480/20016 Out of bounds for computation -> 1.80504[0.001,0.5]
7481
Interaction: 7482/20016 Out of bounds for computation -> 2.05396[0.001,0.5]
7483
7484
7485
Interaction: 7486/20016 Out of bounds for computation -> 1.39422[0.001,0.5]
7487
7488
7489
7490
Interaction: 7491/20016 Out of bounds for computation -> 0.906754[0.001,0.5]
7492
Interaction: 7493/20016 Out of bounds for computation -> 1.35753[0.001,0.5]
Interaction: 7494/20016 Out of bounds for computation -> 2.07475[0.001,0.5]
7495
7496
Interaction: 7497/20016 Out of bounds for computation -> 1.50412[0.001,0.5]
7498
7499
Interaction: 7500/20016 Out of bounds for computation -> 0.599495[0.001,0.5]
Interaction: 7501/20016 Out of bounds for computation -> nan[0.001,0.5]
7502
7503
Interaction: 7504/20016 Out of bounds for computation -> 0.598226[0.001,0.5]
Interaction: 7505/20016 Out of bounds for computation -> 2.35091[0.001,0.5]
7506
Interaction: 7507/20016 Out of bounds for computation -> 1.34973[0.001,0.5]
Interaction: 7508/20016 Out of bounds for computation -> 0.521057[0.001,0.5]
7509
Interaction: 7510/20016 Out of bounds for computation -> 1.37485[0.001,0.5]
7511
Interaction: 7512/20016 Out of bounds for computation -> 0.711069[0.001,0.5]
7513
7514
Interaction: 7515/20016 Out of bounds for computation -> 0.630749[0.001,0.5]
7516
Interaction: 7517/20016 Out of bounds for computation -> 1.47947[0.001,0.5]
7518
Interaction: 7519/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 7520/20016 Out of bounds for computation -> 1.61141[0.001,0.5]
7521
7522
Interaction: 7523/20016 Out of bounds for computation -> nan[0.001,0.5]
7524
7525
7526
Interaction: 7527/20016 Out of bounds for computation -> 1.42388[0.001,0.5]
Interaction: 7528/20016 Out of bounds for computation -> 1.43181[0.001,0.5]
Interaction: 7529/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 7530/20016 Out of bounds for computation -> 1.47744[0.001,0.5]
Interaction: 7531/20016 Out of bounds for computation -> 0.712231[0.001,0.5]
Interaction: 7532/20016 Out of bounds for computation -> nan[0.001,0.5]
7533
7534
Interaction: 7535/20016 Out of bounds for computation -> 0.871164[0.001,0.5]
Interaction: 7536/20016 Out of bounds for computation -> 0.747326[0.001,0.5]
7537
7538
7539
7540
7541
Interaction: 7542/20016 Out of bounds for computation -> 2.32458[0.001,0.5]
7543
Interaction: 7544/20016 Out of bounds for computation -> 0.757482[0.001,0.5]
7545
Interaction: 7546/20016 Out of bounds for computation -> 0.76789[0.001,0.5]
Interaction: 7547/20016 Out of bounds for computation -> 1.23915[0.001,0.5]
7548
7549
7550
7551
7552
7553
7554
7555
7556
Interaction: 7557/20016 Out of bounds for computation -> 2.39382[0.001,0.5]
Interaction: 7558/20016 Out of bounds for computation -> 0.793335[0.001,0.5]
7559
Interaction: 7560/20016 Out of bounds for computation -> 1.4346[0.001,0.5]
Interaction: 7561/20016 Out of bounds for computation -> 1.44832[0.001,0.5]
Interaction: 7562/20016 Out of bounds for computation -> 0.815658[0.001,0.5]
Interaction: 7563/20016 Out of bounds for computation -> 1.53634[0.001,0.5]
Interaction: 7564/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 7565/20016 Out of bounds for computation -> 0.581167[0.001,0.5]
7566
7567
7568
7569
7570
7571
7572
Interaction: 7573/20016 Out of bounds for computation -> 1.9967[0.001,0.5]
7574
7575
Interaction: 7576/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 7577/20016 Out of bounds for computation -> 2.23419[0.001,0.5]
Interaction: 7578/20016 Out of bounds for computation -> 0.509597[0.001,0.5]
7579
7580
7581
7582
7583
7584
Interaction: 7585/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 7586/20016 Out of bounds for computation -> 1.37627[0.001,0.5]
Interaction: 7587/20016 Out of bounds for computation -> 1.49995[0.001,0.5]
Interaction: 7588/20016 Out of bounds for computation -> 1.19994[0.001,0.5]
Interaction: 7589/20016 Out of bounds for computation -> 0.504063[0.001,0.5]
7590
7591
7592
Interaction: 7593/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 7594/20016 Out of bounds for computation -> 0.666331[0.001,0.5]
7595
Interaction: 7596/20016 Out of bounds for computation -> 1.39984[0.001,0.5]
7597
7598
7599
Interaction: 7600/20016 Out of bounds for computation -> nan[0.001,0.5]
7601
Interaction: 7602/20016 Out of bounds for computation -> 0.696959[0.001,0.5]
7603
7604
7605
7606
Interaction: 7607/20016 Out of bounds for computation -> 1.39805[0.001,0.5]
7608
Interaction: 7609/20016 Out of bounds for computation -> 0.811249[0.001,0.5]
7610
Interaction: 7611/20016 Out of bounds for computation -> 0.94211[0.001,0.5]
7612
Interaction: 7613/20016 Out of bounds for computation -> 1.1371[0.001,0.5]
7614
7615
7616
Interaction: 7617/20016 Out of bounds for computation -> nan[0.001,0.5]
7618
7619
7620
7621
Interaction: 7622/20016 Out of bounds for computation -> 0.586143[0.001,0.5]
Interaction: 7623/20016 Out of bounds for computation -> 0.512267[0.001,0.5]
7624
Interaction: 7625/20016 Out of bounds for computation -> 2.23743[0.001,0.5]
Interaction: 7626/20016 Out of bounds for computation -> 1.11283[0.001,0.5]
Interaction: 7627/20016 Out of bounds for computation -> 0.74957[0.001,0.5]
7628
7629
Interaction: 7630/20016 Out of bounds for computation -> 1.45319[0.001,0.5]
7631
Interaction: 7632/20016 Out of bounds for computation -> 1.59225[0.001,0.5]
Interaction: 7633/20016 Out of bounds for computation -> 0.836846[0.001,0.5]
7634
Interaction: 7635/20016 Out of bounds for computation -> 0.513449[0.001,0.5]
Interaction: 7636/20016 Out of bounds for computation -> 1.83052[0.001,0.5]
Interaction: 7637/20016 Out of bounds for computation -> 1.88082[0.001,0.5]
7638
Interaction: 7639/20016 Out of bounds for computation -> 1.55488[0.001,0.5]
Interaction: 7640/20016 Out of bounds for computation -> 0.541168[0.001,0.5]
7641
7642
7643
7644
Interaction: 7645/20016 Out of bounds for computation -> 2.75528[0.001,0.5]
Interaction: 7646/20016 Out of bounds for computation -> 0.686893[0.001,0.5]
7647
Interaction: 7648/20016 Out of bounds for computation -> 0.577149[0.001,0.5]
Interaction: 7649/20016 Out of bounds for computation -> 2.46[0.001,0.5]
Interaction: 7650/20016 Out of bounds for computation -> 1.49326[0.001,0.5]
Interaction: 7651/20016 Out of bounds for computation -> 0.569937[0.001,0.5]
Interaction: 7652/20016 Out of bounds for computation -> 0.75623[0.001,0.5]
7653
7654
7655
7656
Interaction: 7657/20016 Out of bounds for computation -> nan[0.001,0.5]
7658
Interaction: 7659/20016 Out of bounds for computation -> 1.4[0.001,0.5]
7660
Interaction: 7661/20016 Out of bounds for computation -> 0.529799[0.001,0.5]
7662
Interaction: 7663/20016 Out of bounds for computation -> 0.675563[0.001,0.5]
7664
7665
7666
Interaction: 7667/20016 Out of bounds for computation -> 0.539803[0.001,0.5]
7668
7669
7670
Interaction: 7671/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 7672/20016 Out of bounds for computation -> 0.875524[0.001,0.5]
Interaction: 7673/20016 Out of bounds for computation -> 1.6305[0.001,0.5]
Interaction: 7674/20016 Out of bounds for computation -> 0.973176[0.001,0.5]
Interaction: 7675/20016 Out of bounds for computation -> nan[0.001,0.5]
7676
Interaction: 7677/20016 Out of bounds for computation -> 1.48206[0.001,0.5]
Interaction: 7678/20016 Out of bounds for computation -> 1.40951[0.001,0.5]
7679
7680
Interaction: 7681/20016 Out of bounds for computation -> 0.702574[0.001,0.5]
Interaction: 7682/20016 Out of bounds for computation -> 1.61349[0.001,0.5]
7683
Interaction: 7684/20016 Out of bounds for computation -> 0.792185[0.001,0.5]
7685
7686
7687
7688
7689
7690
7691
7692
Interaction: 7693/20016 Out of bounds for computation -> 0.74206[0.001,0.5]
Interaction: 7694/20016 Out of bounds for computation -> 0.657579[0.001,0.5]
7695
7696
7697
Interaction: 7698/20016 Out of bounds for computation -> 1.16931[0.001,0.5]
7699
7700
Interaction: 7701/20016 Out of bounds for computation -> 1.17219[0.001,0.5]
Interaction: 7702/20016 Out of bounds for computation -> 0.583721[0.001,0.5]
Interaction: 7703/20016 Out of bounds for computation -> 1.72177[0.001,0.5]
7704
Interaction: 7705/20016 Out of bounds for computation -> 0.800151[0.001,0.5]
Interaction: 7706/20016 Out of bounds for computation -> 0.70644[0.001,0.5]
7707
Interaction: 7708/20016 Out of bounds for computation -> 0.734918[0.001,0.5]
Interaction: 7709/20016 Out of bounds for computation -> nan[0.001,0.5]
7710
7711
7712
Interaction: 7713/20016 Out of bounds for computation -> nan[0.001,0.5]
7714
Interaction: 7715/20016 Out of bounds for computation -> 2.33107[0.001,0.5]
7716
7717
Interaction: 7718/20016 Out of bounds for computation -> 1.39129[0.001,0.5]
7719
Interaction: 7720/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 7721/20016 Out of bounds for computation -> 1.89255[0.001,0.5]
Interaction: 7722/20016 Out of bounds for computation -> 2.41771[0.001,0.5]
7723
7724
7725
Interaction: 7726/20016 Out of bounds for computation -> 2.89148[0.001,0.5]
Interaction: 7727/20016 Out of bounds for computation -> 1.04519[0.001,0.5]
7728
Interaction: 7729/20016 Out of bounds for computation -> 0.501891[0.001,0.5]
7730
7731
Interaction: 7732/20016 Out of bounds for computation -> 0.718103[0.001,0.5]
Interaction: 7733/20016 Out of bounds for computation -> nan[0.001,0.5]
7734
7735
7736
7737
7738
7739
Interaction: 7740/20016 Out of bounds for computation -> 0.730765[0.001,0.5]
Interaction: 7741/20016 Out of bounds for computation -> 0.570262[0.001,0.5]
7742
7743
Interaction: 7744/20016 Out of bounds for computation -> 0.688659[0.001,0.5]
7745
Interaction: 7746/20016 Out of bounds for computation -> nan[0.001,0.5]
7747
Interaction: 7748/20016 Out of bounds for computation -> 0.50362[0.001,0.5]
Interaction: 7749/20016 Out of bounds for computation -> 1.70916[0.001,0.5]
7750
7751
7752
Interaction: 7753/20016 Out of bounds for computation -> 1.03276[0.001,0.5]
Interaction: 7754/20016 Out of bounds for computation -> 1.8665[0.001,0.5]
Interaction: 7755/20016 Out of bounds for computation -> 2.8605[0.001,0.5]
7756
7757
Interaction: 7758/20016 Out of bounds for computation -> 1.45496[0.001,0.5]
7759
7760
7761
Interaction: 7762/20016 Out of bounds for computation -> 1.62104[0.001,0.5]
7763
Interaction: 7764/20016 Out of bounds for computation -> nan[0.001,0.5]
7765
7766
7767
Interaction: 7768/20016 Out of bounds for computation -> 0.640639[0.001,0.5]
7769
7770
7771
Interaction: 7772/20016 Out of bounds for computation -> 1.87099[0.001,0.5]
Interaction: 7773/20016 Out of bounds for computation -> 0.596529[0.001,0.5]
Interaction: 7774/20016 Out of bounds for computation -> 1.44857[0.001,0.5]
Interaction: 7775/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 7776/20016 Out of bounds for computation -> nan[0.001,0.5]
7777
7778
Interaction: 7779/20016 Out of bounds for computation -> nan[0.001,0.5]
7780
Interaction: 7781/20016 Out of bounds for computation -> 0.965389[0.001,0.5]
Interaction: 7782/20016 Out of bounds for computation -> 1.44721[0.001,0.5]
Interaction: 7783/20016 Out of bounds for computation -> nan[0.001,0.5]
7784
7785
Interaction: 7786/20016 Out of bounds for computation -> 1.23531[0.001,0.5]
Interaction: 7787/20016 Out of bounds for computation -> 0.679112[0.001,0.5]
7788
7789
7790
Interaction: 7791/20016 Out of bounds for computation -> 1.63887[0.001,0.5]
Interaction: 7792/20016 Out of bounds for computation -> 0.606744[0.001,0.5]
Interaction: 7793/20016 Out of bounds for computation -> 0.63599[0.001,0.5]
Interaction: 7794/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 7795/20016 Out of bounds for computation -> 2.07506[0.001,0.5]
Interaction: 7796/20016 Out of bounds for computation -> 1.41581[0.001,0.5]
Interaction: 7797/20016 Out of bounds for computation -> 2.17131[0.001,0.5]
7798
Interaction: 7799/20016 Out of bounds for computation -> 0.585063[0.001,0.5]
7800
Interaction: 7801/20016 Out of bounds for computation -> 1.07698[0.001,0.5]
7802
7803
Interaction: 7804/20016 Out of bounds for computation -> 0.635824[0.001,0.5]
7805
Interaction: 7806/20016 Out of bounds for computation -> 0.719803[0.001,0.5]
7807
7808
7809
7810
7811
Interaction: 7812/20016 Out of bounds for computation -> 1.57951[0.001,0.5]
Interaction: 7813/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 7814/20016 Out of bounds for computation -> 1.90149[0.001,0.5]
Interaction: 7815/20016 Out of bounds for computation -> nan[0.001,0.5]
7816
Interaction: 7817/20016 Out of bounds for computation -> 2.96799[0.001,0.5]
7818
7819
7820
Interaction: 7821/20016 Out of bounds for computation -> 1.58509[0.001,0.5]
Interaction: 7822/20016 Out of bounds for computation -> 1.51303[0.001,0.5]
7823
Interaction: 7824/20016 Out of bounds for computation -> 0.680626[0.001,0.5]
Interaction: 7825/20016 Out of bounds for computation -> 0.743047[0.001,0.5]
7826
7827
7828
Interaction: 7829/20016 Out of bounds for computation -> 0.910759[0.001,0.5]
Interaction: 7830/20016 Out of bounds for computation -> 2.89424[0.001,0.5]
Interaction: 7831/20016 Out of bounds for computation -> 0.613626[0.001,0.5]
Interaction: 7832/20016 Out of bounds for computation -> 0.792316[0.001,0.5]
7833
Interaction: 7834/20016 Out of bounds for computation -> nan[0.001,0.5]
7835
7836
Interaction: 7837/20016 Out of bounds for computation -> 0.662471[0.001,0.5]
Interaction: 7838/20016 Out of bounds for computation -> 0.867607[0.001,0.5]
Interaction: 7839/20016 Out of bounds for computation -> nan[0.001,0.5]
7840
Interaction: 7841/20016 Out of bounds for computation -> 1.21591[0.001,0.5]
7842
7843
Interaction: 7844/20016 Out of bounds for computation -> 1.41787[0.001,0.5]
7845
7846
7847
Interaction: 7848/20016 Out of bounds for computation -> 1.44434[0.001,0.5]
Interaction: 7849/20016 Out of bounds for computation -> 0.763687[0.001,0.5]
7850
Interaction: 7851/20016 Out of bounds for computation -> 0.949912[0.001,0.5]
7852
7853
Interaction: 7854/20016 Out of bounds for computation -> 0.688798[0.001,0.5]
Interaction: 7855/20016 Out of bounds for computation -> 0.958459[0.001,0.5]
Interaction: 7856/20016 Out of bounds for computation -> 1.09946[0.001,0.5]
Interaction: 7857/20016 Out of bounds for computation -> 0.782196[0.001,0.5]
7858
7859
7860
Interaction: 7861/20016 Out of bounds for computation -> 2.07598[0.001,0.5]
Interaction: 7862/20016 Out of bounds for computation -> 1.43447[0.001,0.5]
Interaction: 7863/20016 Out of bounds for computation -> 1.44298[0.001,0.5]
7864
7865
7866
7867
7868
7869
7870
7871
Interaction: 7872/20016 Out of bounds for computation -> 0.86661[0.001,0.5]
Interaction: 7873/20016 Out of bounds for computation -> nan[0.001,0.5]
7874
Interaction: 7875/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 7876/20016 Out of bounds for computation -> 2.43544[0.001,0.5]
Interaction: 7877/20016 Out of bounds for computation -> 2.74479[0.001,0.5]
7878
Interaction: 7879/20016 Out of bounds for computation -> 0.694118[0.001,0.5]
7880
Interaction: 7881/20016 Out of bounds for computation -> 1.79818[0.001,0.5]
Interaction: 7882/20016 Out of bounds for computation -> 1.43413[0.001,0.5]
Interaction: 7883/20016 Out of bounds for computation -> 2.63207[0.001,0.5]
7884
Interaction: 7885/20016 Out of bounds for computation -> 0.657411[0.001,0.5]
7886
Interaction: 7887/20016 Out of bounds for computation -> 2.5044[0.001,0.5]
Interaction: 7888/20016 Out of bounds for computation -> nan[0.001,0.5]
7889
7890
7891
7892
7893
7894
7895
Interaction: 7896/20016 Out of bounds for computation -> 0.72887[0.001,0.5]
7897
7898
Interaction: 7899/20016 Out of bounds for computation -> 0.552301[0.001,0.5]
Interaction: 7900/20016 Out of bounds for computation -> 1.41953[0.001,0.5]
7901
7902
7903
7904
Interaction: 7905/20016 Out of bounds for computation -> 1.36871[0.001,0.5]
7906
Interaction: 7907/20016 Out of bounds for computation -> 0.648036[0.001,0.5]
7908
7909
7910
7911
7912
Interaction: 7913/20016 Out of bounds for computation -> nan[0.001,0.5]
7914
Interaction: 7915/20016 Out of bounds for computation -> 1.43388[0.001,0.5]
Interaction: 7916/20016 Out of bounds for computation -> 2.59499[0.001,0.5]
7917
7918
7919
Interaction: 7920/20016 Out of bounds for computation -> 1.0126[0.001,0.5]
7921
Interaction: 7922/20016 Out of bounds for computation -> 1.43163[0.001,0.5]
Interaction: 7923/20016 Out of bounds for computation -> 1.42764[0.001,0.5]
7924
Interaction: 7925/20016 Out of bounds for computation -> 0.677469[0.001,0.5]
7926
7927
7928
7929
7930
7931
7932
7933
7934
Interaction: 7935/20016 Out of bounds for computation -> 1.72851[0.001,0.5]
7936
Interaction: 7937/20016 Out of bounds for computation -> 1.52829[0.001,0.5]
Interaction: 7938/20016 Out of bounds for computation -> 0.802878[0.001,0.5]
7939
Interaction: 7940/20016 Out of bounds for computation -> 0.821897[0.001,0.5]
7941
7942
Interaction: 7943/20016 Out of bounds for computation -> 0.729454[0.001,0.5]
7944
7945
7946
Interaction: 7947/20016 Out of bounds for computation -> 2.64947[0.001,0.5]
7948
7949
7950
7951
7952
7953
Interaction: 7954/20016 Out of bounds for computation -> 1.46917[0.001,0.5]
Interaction: 7955/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 7956/20016 Out of bounds for computation -> 2.30163[0.001,0.5]
7957
Interaction: 7958/20016 Out of bounds for computation -> 1.67506[0.001,0.5]
7959
7960
Interaction: 7961/20016 Out of bounds for computation -> 1.47602[0.001,0.5]
7962
Interaction: 7963/20016 Out of bounds for computation -> 2.13456[0.001,0.5]
Interaction: 7964/20016 Out of bounds for computation -> 0.53405[0.001,0.5]
Interaction: 7965/20016 Out of bounds for computation -> 0.703491[0.001,0.5]
Interaction: 7966/20016 Out of bounds for computation -> 1.79845[0.001,0.5]
7967
7968
Interaction: 7969/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 7970/20016 Out of bounds for computation -> 1.44528[0.001,0.5]
Interaction: 7971/20016 Out of bounds for computation -> 0.527498[0.001,0.5]
Interaction: 7972/20016 Out of bounds for computation -> 2.77072[0.001,0.5]
Interaction: 7973/20016 Out of bounds for computation -> 0.658319[0.001,0.5]
7974
7975
7976
Interaction: 7977/20016 Out of bounds for computation -> nan[0.001,0.5]
7978
Interaction: 7979/20016 Out of bounds for computation -> 1.48784[0.001,0.5]
7980
7981
7982
7983
7984
Interaction: 7985/20016 Out of bounds for computation -> 0.798396[0.001,0.5]
7986
Interaction: 7987/20016 Out of bounds for computation -> 0.777505[0.001,0.5]
7988
Interaction: 7989/20016 Out of bounds for computation -> 1.40444[0.001,0.5]
7990
7991
Interaction: 7992/20016 Out of bounds for computation -> 0.622738[0.001,0.5]
Interaction: 7993/20016 Out of bounds for computation -> 2.26062[0.001,0.5]
7994
7995
7996
7997
Interaction: 7998/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 7999/20016 Out of bounds for computation -> 0.581892[0.001,0.5]
8000
8001
8002
8003
8004
8005
8006
8007
Interaction: 8008/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8009/20016 Out of bounds for computation -> 1.49281[0.001,0.5]
8010
8011
8012
8013
8014
8015
Interaction: 8016/20016 Out of bounds for computation -> 1.83444[0.001,0.5]
8017
8018
Interaction: 8019/20016 Out of bounds for computation -> 0.73515[0.001,0.5]
Interaction: 8020/20016 Out of bounds for computation -> 0.534174[0.001,0.5]
8021
Interaction: 8022/20016 Out of bounds for computation -> 0.536753[0.001,0.5]
8023
Interaction: 8024/20016 Out of bounds for computation -> 1.20475[0.001,0.5]
8025
Interaction: 8026/20016 Out of bounds for computation -> 0.551147[0.001,0.5]
Interaction: 8027/20016 Out of bounds for computation -> 2.17531[0.001,0.5]
8028
8029
8030
8031
Interaction: 8032/20016 Out of bounds for computation -> 0.654966[0.001,0.5]
Interaction: 8033/20016 Out of bounds for computation -> 1.95931[0.001,0.5]
8034
Interaction: 8035/20016 Out of bounds for computation -> 0.861624[0.001,0.5]
8036
Interaction: 8037/20016 Out of bounds for computation -> 1.38948[0.001,0.5]
8038
8039
Interaction: 8040/20016 Out of bounds for computation -> 1.51995[0.001,0.5]
8041
8042
8043
8044
8045
8046
8047
Interaction: 8048/20016 Out of bounds for computation -> 0.716055[0.001,0.5]
8049
8050
Interaction: 8051/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8052/20016 Out of bounds for computation -> 0.538305[0.001,0.5]
Interaction: 8053/20016 Out of bounds for computation -> 2.71811[0.001,0.5]
Interaction: 8054/20016 Out of bounds for computation -> 0.974096[0.001,0.5]
Interaction: 8055/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8056/20016 Out of bounds for computation -> 0.793263[0.001,0.5]
Interaction: 8057/20016 Out of bounds for computation -> 1.44078[0.001,0.5]
Interaction: 8058/20016 Out of bounds for computation -> 2.96599[0.001,0.5]
8059
Interaction: 8060/20016 Out of bounds for computation -> 1.46243[0.001,0.5]
Interaction: 8061/20016 Out of bounds for computation -> 1.52609[0.001,0.5]
8062
Interaction: 8063/20016 Out of bounds for computation -> 0.666996[0.001,0.5]
8064
8065
8066
8067
8068
8069
Interaction: 8070/20016 Out of bounds for computation -> 1.82984[0.001,0.5]
Interaction: 8071/20016 Out of bounds for computation -> 1.47998[0.001,0.5]
Interaction: 8072/20016 Out of bounds for computation -> 1.26064[0.001,0.5]
Interaction: 8073/20016 Out of bounds for computation -> 0.880061[0.001,0.5]
8074
Interaction: 8075/20016 Out of bounds for computation -> 0.824286[0.001,0.5]
8076
8077
8078
Interaction: 8079/20016 Out of bounds for computation -> 0.551214[0.001,0.5]
Interaction: 8080/20016 Out of bounds for computation -> 1.83436[0.001,0.5]
8081
Interaction: 8082/20016 Out of bounds for computation -> 1.41764[0.001,0.5]
8083
8084
Interaction: 8085/20016 Out of bounds for computation -> 0.645066[0.001,0.5]
Interaction: 8086/20016 Out of bounds for computation -> 0.566895[0.001,0.5]
8087
Interaction: 8088/20016 Out of bounds for computation -> 1.23442[0.001,0.5]
8089
8090
Interaction: 8091/20016 Out of bounds for computation -> 2.27955[0.001,0.5]
8092
8093
Interaction: 8094/20016 Out of bounds for computation -> 0.632016[0.001,0.5]
Interaction: 8095/20016 Out of bounds for computation -> 0.745947[0.001,0.5]
Interaction: 8096/20016 Out of bounds for computation -> nan[0.001,0.5]
8097
8098
8099
Interaction: 8100/20016 Out of bounds for computation -> 0.794689[0.001,0.5]
8101
Interaction: 8102/20016 Out of bounds for computation -> 0.88289[0.001,0.5]
Interaction: 8103/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8104/20016 Out of bounds for computation -> 1.17635[0.001,0.5]
8105
8106
Interaction: 8107/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8108/20016 Out of bounds for computation -> 0.800724[0.001,0.5]
Interaction: 8109/20016 Out of bounds for computation -> 0.985081[0.001,0.5]
Interaction: 8110/20016 Out of bounds for computation -> 0.686818[0.001,0.5]
8111
Interaction: 8112/20016 Out of bounds for computation -> 1.15695[0.001,0.5]
Interaction: 8113/20016 Out of bounds for computation -> 1.35155[0.001,0.5]
8114
8115
8116
8117
Interaction: 8118/20016 Out of bounds for computation -> 0.638691[0.001,0.5]
Interaction: 8119/20016 Out of bounds for computation -> 0.53845[0.001,0.5]
8120
8121
Interaction: 8122/20016 Out of bounds for computation -> 1.78627[0.001,0.5]
Interaction: 8123/20016 Out of bounds for computation -> 1.81345[0.001,0.5]
8124
8125
8126
Interaction: 8127/20016 Out of bounds for computation -> 2.15784[0.001,0.5]
8128
Interaction: 8129/20016 Out of bounds for computation -> 0.738065[0.001,0.5]
8130
Interaction: 8131/20016 Out of bounds for computation -> 2.63238[0.001,0.5]
Interaction: 8132/20016 Out of bounds for computation -> 0.538259[0.001,0.5]
8133
8134
8135
Interaction: 8136/20016 Out of bounds for computation -> 0.654255[0.001,0.5]
8137
Interaction: 8138/20016 Out of bounds for computation -> 1.5747[0.001,0.5]
8139
Interaction: 8140/20016 Out of bounds for computation -> 1.06771[0.001,0.5]
Interaction: 8141/20016 Out of bounds for computation -> 1.60913[0.001,0.5]
8142
8143
Interaction: 8144/20016 Out of bounds for computation -> 2.16809[0.001,0.5]
8145
Interaction: 8146/20016 Out of bounds for computation -> 2.38739[0.001,0.5]
8147
Interaction: 8148/20016 Out of bounds for computation -> nan[0.001,0.5]
8149
8150
Interaction: 8151/20016 Out of bounds for computation -> 1.18566[0.001,0.5]
8152
8153
8154
Interaction: 8155/20016 Out of bounds for computation -> 1.85716[0.001,0.5]
8156
Interaction: 8157/20016 Out of bounds for computation -> 2.56404[0.001,0.5]
8158
8159
8160
8161
Interaction: 8162/20016 Out of bounds for computation -> 1.15089[0.001,0.5]
Interaction: 8163/20016 Out of bounds for computation -> 0.594714[0.001,0.5]
8164
Interaction: 8165/20016 Out of bounds for computation -> 0.732926[0.001,0.5]
Interaction: 8166/20016 Out of bounds for computation -> 2.66705[0.001,0.5]
8167
Interaction: 8168/20016 Out of bounds for computation -> 1.9186[0.001,0.5]
Interaction: 8169/20016 Out of bounds for computation -> 0.678953[0.001,0.5]
Interaction: 8170/20016 Out of bounds for computation -> 2.83101[0.001,0.5]
8171
8172
Interaction: 8173/20016 Out of bounds for computation -> 0.779175[0.001,0.5]
Interaction: 8174/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8175/20016 Out of bounds for computation -> nan[0.001,0.5]
8176
Interaction: 8177/20016 Out of bounds for computation -> 0.579402[0.001,0.5]
Interaction: 8178/20016 Out of bounds for computation -> 0.693531[0.001,0.5]
8179
Interaction: 8180/20016 Out of bounds for computation -> 0.817818[0.001,0.5]
8181
Interaction: 8182/20016 Out of bounds for computation -> 0.546555[0.001,0.5]
8183
8184
Interaction: 8185/20016 Out of bounds for computation -> 2.25224[0.001,0.5]
8186
8187
Interaction: 8188/20016 Out of bounds for computation -> 1.41562[0.001,0.5]
Interaction: 8189/20016 Out of bounds for computation -> 0.710366[0.001,0.5]
8190
Interaction: 8191/20016 Out of bounds for computation -> 1.86259[0.001,0.5]
8192
8193
8194
Interaction: 8195/20016 Out of bounds for computation -> 0.536099[0.001,0.5]
Interaction: 8196/20016 Out of bounds for computation -> 1.52722[0.001,0.5]
Interaction: 8197/20016 Out of bounds for computation -> 0.776822[0.001,0.5]
Interaction: 8198/20016 Out of bounds for computation -> 0.915633[0.001,0.5]
8199
8200
Interaction: 8201/20016 Out of bounds for computation -> 1.44096[0.001,0.5]
Interaction: 8202/20016 Out of bounds for computation -> 0.775883[0.001,0.5]
Interaction: 8203/20016 Out of bounds for computation -> 0.879294[0.001,0.5]
Interaction: 8204/20016 Out of bounds for computation -> 0.576549[0.001,0.5]
Interaction: 8205/20016 Out of bounds for computation -> 2.61599[0.001,0.5]
Interaction: 8206/20016 Out of bounds for computation -> 2.12142[0.001,0.5]
8207
8208
8209
Interaction: 8210/20016 Out of bounds for computation -> 0.533256[0.001,0.5]
Interaction: 8211/20016 Out of bounds for computation -> nan[0.001,0.5]
8212
Interaction: 8213/20016 Out of bounds for computation -> 0.509641[0.001,0.5]
Interaction: 8214/20016 Out of bounds for computation -> 0.723349[0.001,0.5]
Interaction: 8215/20016 Out of bounds for computation -> 0.901093[0.001,0.5]
8216
Interaction: 8217/20016 Out of bounds for computation -> 1.51121[0.001,0.5]
8218
8219
Interaction: 8220/20016 Out of bounds for computation -> 1.4134[0.001,0.5]
8221
8222
8223
8224
8225
8226
Interaction: 8227/20016 Out of bounds for computation -> 0.549812[0.001,0.5]
8228
Interaction: 8229/20016 Out of bounds for computation -> 0.955801[0.001,0.5]
Interaction: 8230/20016 Out of bounds for computation -> 2.17652[0.001,0.5]
8231
8232
8233
8234
8235
Interaction: 8236/20016 Out of bounds for computation -> 0.507057[0.001,0.5]
Interaction: 8237/20016 Out of bounds for computation -> 2.85632[0.001,0.5]
Interaction: 8238/20016 Out of bounds for computation -> 0.63664[0.001,0.5]
Interaction: 8239/20016 Out of bounds for computation -> 1.46554[0.001,0.5]
8240
Interaction: 8241/20016 Out of bounds for computation -> 1.92831[0.001,0.5]
8242
8243
Interaction: 8244/20016 Out of bounds for computation -> 1.55524[0.001,0.5]
Interaction: 8245/20016 Out of bounds for computation -> 1.50903[0.001,0.5]
Interaction: 8246/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8247/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8248/20016 Out of bounds for computation -> nan[0.001,0.5]
8249
8250
8251
Interaction: 8252/20016 Out of bounds for computation -> 0.577741[0.001,0.5]
Interaction: 8253/20016 Out of bounds for computation -> 0.69406[0.001,0.5]
Interaction: 8254/20016 Out of bounds for computation -> 1.25493[0.001,0.5]
Interaction: 8255/20016 Out of bounds for computation -> 2.57899[0.001,0.5]
8256
Interaction: 8257/20016 Out of bounds for computation -> 0.655977[0.001,0.5]
8258
8259
8260
Interaction: 8261/20016 Out of bounds for computation -> 1.45544[0.001,0.5]
Interaction: 8262/20016 Out of bounds for computation -> nan[0.001,0.5]
8263
8264
8265
8266
Interaction: 8267/20016 Out of bounds for computation -> 0.59558[0.001,0.5]
Interaction: 8268/20016 Out of bounds for computation -> 1.04082[0.001,0.5]
8269
8270
8271
Interaction: 8272/20016 Out of bounds for computation -> 0.755367[0.001,0.5]
8273
Interaction: 8274/20016 Out of bounds for computation -> nan[0.001,0.5]
8275
8276
8277
8278
8279
Interaction: 8280/20016 Out of bounds for computation -> 0.568991[0.001,0.5]
Interaction: 8281/20016 Out of bounds for computation -> 0.7048[0.001,0.5]
Interaction: 8282/20016 Out of bounds for computation -> 1.32779[0.001,0.5]
8283
Interaction: 8284/20016 Out of bounds for computation -> 0.679257[0.001,0.5]
Interaction: 8285/20016 Out of bounds for computation -> 2.08667[0.001,0.5]
Interaction: 8286/20016 Out of bounds for computation -> 0.558066[0.001,0.5]
8287
Interaction: 8288/20016 Out of bounds for computation -> 1.6705[0.001,0.5]
8289
8290
Interaction: 8291/20016 Out of bounds for computation -> 1.51257[0.001,0.5]
Interaction: 8292/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8293/20016 Out of bounds for computation -> 0.597269[0.001,0.5]
8294
8295
8296
8297
Interaction: 8298/20016 Out of bounds for computation -> 0.712638[0.001,0.5]
8299
Interaction: 8300/20016 Out of bounds for computation -> 0.524095[0.001,0.5]
Interaction: 8301/20016 Out of bounds for computation -> 0.58725[0.001,0.5]
8302
8303
8304
Interaction: 8305/20016 Out of bounds for computation -> 1.52202[0.001,0.5]
Interaction: 8306/20016 Out of bounds for computation -> 1.09867[0.001,0.5]
Interaction: 8307/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8308/20016 Out of bounds for computation -> 1.00594[0.001,0.5]
Interaction: 8309/20016 Out of bounds for computation -> 1.71171[0.001,0.5]
8310
8311
Interaction: 8312/20016 Out of bounds for computation -> 0.869618[0.001,0.5]
8313
Interaction: 8314/20016 Out of bounds for computation -> 0.604384[0.001,0.5]
Interaction: 8315/20016 Out of bounds for computation -> 0.645785[0.001,0.5]
8316
Interaction: 8317/20016 Out of bounds for computation -> 0.981237[0.001,0.5]
8318
8319
Interaction: 8320/20016 Out of bounds for computation -> 0.676057[0.001,0.5]
8321
Interaction: 8322/20016 Out of bounds for computation -> 0.895134[0.001,0.5]
Interaction: 8323/20016 Out of bounds for computation -> 1.95572[0.001,0.5]
8324
Interaction: 8325/20016 Out of bounds for computation -> 1.41207[0.001,0.5]
Interaction: 8326/20016 Out of bounds for computation -> 1.59886[0.001,0.5]
8327
8328
Interaction: 8329/20016 Out of bounds for computation -> 1.55323[0.001,0.5]
8330
Interaction: 8331/20016 Out of bounds for computation -> 1.44715[0.001,0.5]
8332
Interaction: 8333/20016 Out of bounds for computation -> 1.48358[0.001,0.5]
8334
Interaction: 8335/20016 Out of bounds for computation -> 2.60926[0.001,0.5]
8336
8337
Interaction: 8338/20016 Out of bounds for computation -> 1.81078[0.001,0.5]
8339
Interaction: 8340/20016 Out of bounds for computation -> 1.86827[0.001,0.5]
8341
Interaction: 8342/20016 Out of bounds for computation -> 1.63759[0.001,0.5]
Interaction: 8343/20016 Out of bounds for computation -> 0.850603[0.001,0.5]
8344
8345
Interaction: 8346/20016 Out of bounds for computation -> nan[0.001,0.5]
8347
Interaction: 8348/20016 Out of bounds for computation -> 2.1861[0.001,0.5]
8349
8350
8351
8352
Interaction: 8353/20016 Out of bounds for computation -> 0.883167[0.001,0.5]
8354
Interaction: 8355/20016 Out of bounds for computation -> 2.26539[0.001,0.5]
Interaction: 8356/20016 Out of bounds for computation -> 0.914346[0.001,0.5]
8357
8358
8359
8360
Interaction: 8361/20016 Out of bounds for computation -> 0.776975[0.001,0.5]
8362
8363
8364
Interaction: 8365/20016 Out of bounds for computation -> 0.571314[0.001,0.5]
Interaction: 8366/20016 Out of bounds for computation -> 1.40879[0.001,0.5]
8367
Interaction: 8368/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8369/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8370/20016 Out of bounds for computation -> 1.80133[0.001,0.5]
8371
8372
Interaction: 8373/20016 Out of bounds for computation -> 0.559964[0.001,0.5]
8374
Interaction: 8375/20016 Out of bounds for computation -> 0.96378[0.001,0.5]
Interaction: 8376/20016 Out of bounds for computation -> 0.619604[0.001,0.5]
Interaction: 8377/20016 Out of bounds for computation -> 0.707741[0.001,0.5]
Interaction: 8378/20016 Out of bounds for computation -> 2.03745[0.001,0.5]
Interaction: 8379/20016 Out of bounds for computation -> nan[0.001,0.5]
8380
8381
Interaction: 8382/20016 Out of bounds for computation -> 0.596991[0.001,0.5]
Interaction: 8383/20016 Out of bounds for computation -> 1.23575[0.001,0.5]
8384
Interaction: 8385/20016 Out of bounds for computation -> 1.47717[0.001,0.5]
8386
8387
8388
Interaction: 8389/20016 Out of bounds for computation -> 0.980059[0.001,0.5]
8390
Interaction: 8391/20016 Out of bounds for computation -> 1.5594[0.001,0.5]
8392
Interaction: 8393/20016 Out of bounds for computation -> 1.83223[0.001,0.5]
Interaction: 8394/20016 Out of bounds for computation -> 1.54672[0.001,0.5]
8395
8396
Interaction: 8397/20016 Out of bounds for computation -> 2.75541[0.001,0.5]
Interaction: 8398/20016 Out of bounds for computation -> nan[0.001,0.5]
8399
8400
Interaction: 8401/20016 Out of bounds for computation -> 1.51227[0.001,0.5]
8402
8403
8404
Interaction: 8405/20016 Out of bounds for computation -> 1.43094[0.001,0.5]
8406
Interaction: 8407/20016 Out of bounds for computation -> 1.93612[0.001,0.5]
Interaction: 8408/20016 Out of bounds for computation -> 0.869237[0.001,0.5]
Interaction: 8409/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8410/20016 Out of bounds for computation -> 2.54491[0.001,0.5]
8411
8412
Interaction: 8413/20016 Out of bounds for computation -> 0.798309[0.001,0.5]
Interaction: 8414/20016 Out of bounds for computation -> 2.13277[0.001,0.5]
Interaction: 8415/20016 Out of bounds for computation -> 0.793817[0.001,0.5]
8416
Interaction: 8417/20016 Out of bounds for computation -> 1.28132[0.001,0.5]
8418
Interaction: 8419/20016 Out of bounds for computation -> 0.675243[0.001,0.5]
Interaction: 8420/20016 Out of bounds for computation -> 0.708348[0.001,0.5]
8421
Interaction: 8422/20016 Out of bounds for computation -> 1.37369[0.001,0.5]
8423
Interaction: 8424/20016 Out of bounds for computation -> 1.79969[0.001,0.5]
8425
Interaction: 8426/20016 Out of bounds for computation -> 1.98096[0.001,0.5]
8427
8428
Interaction: 8429/20016 Out of bounds for computation -> nan[0.001,0.5]
8430
Interaction: 8431/20016 Out of bounds for computation -> 1.44714[0.001,0.5]
Interaction: 8432/20016 Out of bounds for computation -> 1.2821[0.001,0.5]
Interaction: 8433/20016 Out of bounds for computation -> 0.897502[0.001,0.5]
Interaction: 8434/20016 Out of bounds for computation -> 1.72583[0.001,0.5]
8435
8436
Interaction: 8437/20016 Out of bounds for computation -> 1.77645[0.001,0.5]
8438
8439
8440
8441
8442
8443
8444
8445
Interaction: 8446/20016 Out of bounds for computation -> 2.64829[0.001,0.5]
8447
8448
Interaction: 8449/20016 Out of bounds for computation -> 1.34669[0.001,0.5]
8450
Interaction: 8451/20016 Out of bounds for computation -> 0.786055[0.001,0.5]
Interaction: 8452/20016 Out of bounds for computation -> 1.06595[0.001,0.5]
8453
8454
8455
8456
Interaction: 8457/20016 Out of bounds for computation -> 0.682244[0.001,0.5]
Interaction: 8458/20016 Out of bounds for computation -> 0.552418[0.001,0.5]
Interaction: 8459/20016 Out of bounds for computation -> 1.18902[0.001,0.5]
8460
8461
8462
8463
8464
Interaction: 8465/20016 Out of bounds for computation -> 1.42437[0.001,0.5]
8466
Interaction: 8467/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8468/20016 Out of bounds for computation -> 0.810045[0.001,0.5]
8469
Interaction: 8470/20016 Out of bounds for computation -> 2.51429[0.001,0.5]
8471
8472
8473
8474
8475
8476
8477
8478
Interaction: 8479/20016 Out of bounds for computation -> 1.38965[0.001,0.5]
Interaction: 8480/20016 Out of bounds for computation -> 0.591838[0.001,0.5]
8481
8482
8483
Interaction: 8484/20016 Out of bounds for computation -> 1.46274[0.001,0.5]
8485
8486
Interaction: 8487/20016 Out of bounds for computation -> 0.590741[0.001,0.5]
8488
Interaction: 8489/20016 Out of bounds for computation -> 1.62405[0.001,0.5]
8490
Interaction: 8491/20016 Out of bounds for computation -> 0.566567[0.001,0.5]
8492
8493
Interaction: 8494/20016 Out of bounds for computation -> 1.05338[0.001,0.5]
8495
8496
8497
8498
8499
8500
8501
Interaction: 8502/20016 Out of bounds for computation -> 0.71913[0.001,0.5]
8503
Interaction: 8504/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8505/20016 Out of bounds for computation -> 0.678854[0.001,0.5]
8506
8507
8508
8509
8510
Interaction: 8511/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8512/20016 Out of bounds for computation -> 0.795608[0.001,0.5]
8513
Interaction: 8514/20016 Out of bounds for computation -> 0.72687[0.001,0.5]
Interaction: 8515/20016 Out of bounds for computation -> 1.37047[0.001,0.5]
Interaction: 8516/20016 Out of bounds for computation -> 0.587916[0.001,0.5]
8517
Interaction: 8518/20016 Out of bounds for computation -> 1.38785[0.001,0.5]
Interaction: 8519/20016 Out of bounds for computation -> 1.43635[0.001,0.5]
Interaction: 8520/20016 Out of bounds for computation -> 1.82685[0.001,0.5]
8521
Interaction: 8522/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8523/20016 Out of bounds for computation -> 1.87904[0.001,0.5]
8524
8525
Interaction: 8526/20016 Out of bounds for computation -> 0.732158[0.001,0.5]
Interaction: 8527/20016 Out of bounds for computation -> 1.48284[0.001,0.5]
8528
Interaction: 8529/20016 Out of bounds for computation -> 1.32051[0.001,0.5]
8530
Interaction: 8531/20016 Out of bounds for computation -> 0.722275[0.001,0.5]
8532
8533
8534
8535
8536
8537
Interaction: 8538/20016 Out of bounds for computation -> 1.50549[0.001,0.5]
Interaction: 8539/20016 Out of bounds for computation -> 0.694828[0.001,0.5]
8540
8541
Interaction: 8542/20016 Out of bounds for computation -> 0.648681[0.001,0.5]
8543
8544
8545
8546
8547
Interaction: 8548/20016 Out of bounds for computation -> 1.36702[0.001,0.5]
Interaction: 8549/20016 Out of bounds for computation -> 0.581327[0.001,0.5]
8550
Interaction: 8551/20016 Out of bounds for computation -> 1.08069[0.001,0.5]
8552
Interaction: 8553/20016 Out of bounds for computation -> 1.42181[0.001,0.5]
Interaction: 8554/20016 Out of bounds for computation -> 0.581283[0.001,0.5]
Interaction: 8555/20016 Out of bounds for computation -> 0.856793[0.001,0.5]
8556
Interaction: 8557/20016 Out of bounds for computation -> 0.647575[0.001,0.5]
8558
Interaction: 8559/20016 Out of bounds for computation -> 1.2044[0.001,0.5]
Interaction: 8560/20016 Out of bounds for computation -> 0.937372[0.001,0.5]
Interaction: 8561/20016 Out of bounds for computation -> 0.579256[0.001,0.5]
8562
Interaction: 8563/20016 Out of bounds for computation -> 1.17786[0.001,0.5]
8564
8565
Interaction: 8566/20016 Out of bounds for computation -> 0.811969[0.001,0.5]
Interaction: 8567/20016 Out of bounds for computation -> 1.76016[0.001,0.5]
Interaction: 8568/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8569/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8570/20016 Out of bounds for computation -> 2.0409[0.001,0.5]
Interaction: 8571/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8572/20016 Out of bounds for computation -> 1.2714[0.001,0.5]
Interaction: 8573/20016 Out of bounds for computation -> 0.52086[0.001,0.5]
8574
8575
8576
8577
8578
8579
8580
8581
Interaction: 8582/20016 Out of bounds for computation -> 1.79823[0.001,0.5]
Interaction: 8583/20016 Out of bounds for computation -> 0.826033[0.001,0.5]
Interaction: 8584/20016 Out of bounds for computation -> 2.06461[0.001,0.5]
8585
Interaction: 8586/20016 Out of bounds for computation -> 1.39472[0.001,0.5]
Interaction: 8587/20016 Out of bounds for computation -> 1.68495[0.001,0.5]
Interaction: 8588/20016 Out of bounds for computation -> 0.701246[0.001,0.5]
Interaction: 8589/20016 Out of bounds for computation -> 0.507372[0.001,0.5]
8590
8591
Interaction: 8592/20016 Out of bounds for computation -> 2.07718[0.001,0.5]
Interaction: 8593/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8594/20016 Out of bounds for computation -> 0.897653[0.001,0.5]
Interaction: 8595/20016 Out of bounds for computation -> 0.736072[0.001,0.5]
8596
Interaction: 8597/20016 Out of bounds for computation -> 0.989227[0.001,0.5]
Interaction: 8598/20016 Out of bounds for computation -> 2.43094[0.001,0.5]
8599
8600
8601
8602
Interaction: 8603/20016 Out of bounds for computation -> nan[0.001,0.5]
8604
8605
8606
8607
8608
8609
Interaction: 8610/20016 Out of bounds for computation -> 0.66746[0.001,0.5]
8611
8612
Interaction: 8613/20016 Out of bounds for computation -> 0.830225[0.001,0.5]
Interaction: 8614/20016 Out of bounds for computation -> 0.567295[0.001,0.5]
Interaction: 8615/20016 Out of bounds for computation -> 0.795717[0.001,0.5]
8616
Interaction: 8617/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8618/20016 Out of bounds for computation -> 0.535489[0.001,0.5]
8619
Interaction: 8620/20016 Out of bounds for computation -> 1.29325[0.001,0.5]
Interaction: 8621/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8622/20016 Out of bounds for computation -> nan[0.001,0.5]
8623
8624
8625
Interaction: 8626/20016 Out of bounds for computation -> 0.868574[0.001,0.5]
Interaction: 8627/20016 Out of bounds for computation -> 0.617959[0.001,0.5]
8628
8629
Interaction: 8630/20016 Out of bounds for computation -> 0.556433[0.001,0.5]
Interaction: 8631/20016 Out of bounds for computation -> 1.44376[0.001,0.5]
8632
Interaction: 8633/20016 Out of bounds for computation -> 0.514169[0.001,0.5]
Interaction: 8634/20016 Out of bounds for computation -> 0.591762[0.001,0.5]
Interaction: 8635/20016 Out of bounds for computation -> 0.854705[0.001,0.5]
Interaction: 8636/20016 Out of bounds for computation -> 0.909648[0.001,0.5]
8637
8638
Interaction: 8639/20016 Out of bounds for computation -> nan[0.001,0.5]
8640
Interaction: 8641/20016 Out of bounds for computation -> 0.787288[0.001,0.5]
Interaction: 8642/20016 Out of bounds for computation -> 0.845068[0.001,0.5]
8643
Interaction: 8644/20016 Out of bounds for computation -> 1.60704[0.001,0.5]
Interaction: 8645/20016 Out of bounds for computation -> 2.59487[0.001,0.5]
8646
8647
Interaction: 8648/20016 Out of bounds for computation -> 2.18694[0.001,0.5]
8649
Interaction: 8650/20016 Out of bounds for computation -> 2.41061[0.001,0.5]
8651
Interaction: 8652/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8653/20016 Out of bounds for computation -> 1.32034[0.001,0.5]
8654
8655
8656
8657
Interaction: 8658/20016 Out of bounds for computation -> 1.42933[0.001,0.5]
Interaction: 8659/20016 Out of bounds for computation -> nan[0.001,0.5]
8660
8661
8662
8663
Interaction: 8664/20016 Out of bounds for computation -> 0.657591[0.001,0.5]
8665
8666
8667
Interaction: 8668/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8669/20016 Out of bounds for computation -> 0.772017[0.001,0.5]
8670
8671
8672
Interaction: 8673/20016 Out of bounds for computation -> 1.4156[0.001,0.5]
Interaction: 8674/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8675/20016 Out of bounds for computation -> 0.92247[0.001,0.5]
Interaction: 8676/20016 Out of bounds for computation -> 0.513206[0.001,0.5]
8677
Interaction: 8678/20016 Out of bounds for computation -> 0.532558[0.001,0.5]
Interaction: 8679/20016 Out of bounds for computation -> 1.54227[0.001,0.5]
8680
8681
Interaction: 8682/20016 Out of bounds for computation -> 0.505957[0.001,0.5]
Interaction: 8683/20016 Out of bounds for computation -> 1.43329[0.001,0.5]
Interaction: 8684/20016 Out of bounds for computation -> 0.603577[0.001,0.5]
8685
8686
8687
Interaction: 8688/20016 Out of bounds for computation -> 1.28896[0.001,0.5]
8689
8690
8691
8692
8693
8694
8695
Interaction: 8696/20016 Out of bounds for computation -> 2.49958[0.001,0.5]
Interaction: 8697/20016 Out of bounds for computation -> 0.792941[0.001,0.5]
Interaction: 8698/20016 Out of bounds for computation -> 0.924967[0.001,0.5]
Interaction: 8699/20016 Out of bounds for computation -> 1.59899[0.001,0.5]
Interaction: 8700/20016 Out of bounds for computation -> 0.788066[0.001,0.5]
8701
8702
Interaction: 8703/20016 Out of bounds for computation -> 1.00426[0.001,0.5]
Interaction: 8704/20016 Out of bounds for computation -> 1.71252[0.001,0.5]
8705
Interaction: 8706/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8707/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8708/20016 Out of bounds for computation -> 2.69864[0.001,0.5]
Interaction: 8709/20016 Out of bounds for computation -> 2.27057[0.001,0.5]
8710
8711
Interaction: 8712/20016 Out of bounds for computation -> 0.934439[0.001,0.5]
Interaction: 8713/20016 Out of bounds for computation -> nan[0.001,0.5]
8714
8715
8716
8717
8718
Interaction: 8719/20016 Out of bounds for computation -> 2.17358[0.001,0.5]
8720
8721
8722
8723
Interaction: 8724/20016 Out of bounds for computation -> 1.18566[0.001,0.5]
8725
8726
8727
8728
Interaction: 8729/20016 Out of bounds for computation -> 1.58351[0.001,0.5]
8730
Interaction: 8731/20016 Out of bounds for computation -> 1.40858[0.001,0.5]
8732
8733
8734
8735
8736
8737
8738
8739
8740
Interaction: 8741/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8742/20016 Out of bounds for computation -> 0.694819[0.001,0.5]
Interaction: 8743/20016 Out of bounds for computation -> 2.51096[0.001,0.5]
8744
Interaction: 8745/20016 Out of bounds for computation -> 1.40638[0.001,0.5]
8746
Interaction: 8747/20016 Out of bounds for computation -> 2.22344[0.001,0.5]
8748
8749
Interaction: 8750/20016 Out of bounds for computation -> 0.597864[0.001,0.5]
8751
Interaction: 8752/20016 Out of bounds for computation -> 1.67945[0.001,0.5]
Interaction: 8753/20016 Out of bounds for computation -> 0.781424[0.001,0.5]
8754
8755
Interaction: 8756/20016 Out of bounds for computation -> 0.737297[0.001,0.5]
Interaction: 8757/20016 Out of bounds for computation -> 0.793292[0.001,0.5]
8758
8759
8760
Interaction: 8761/20016 Out of bounds for computation -> 0.559393[0.001,0.5]
8762
8763
8764
8765
8766
Interaction: 8767/20016 Out of bounds for computation -> 1.03141[0.001,0.5]
8768
8769
8770
8771
Interaction: 8772/20016 Out of bounds for computation -> 1.43394[0.001,0.5]
8773
8774
8775
Interaction: 8776/20016 Out of bounds for computation -> 2.48964[0.001,0.5]
Interaction: 8777/20016 Out of bounds for computation -> 0.60489[0.001,0.5]
8778
Interaction: 8779/20016 Out of bounds for computation -> 0.650555[0.001,0.5]
8780
8781
Interaction: 8782/20016 Out of bounds for computation -> 0.871894[0.001,0.5]
8783
Interaction: 8784/20016 Out of bounds for computation -> 0.555615[0.001,0.5]
8785
Interaction: 8786/20016 Out of bounds for computation -> 0.921049[0.001,0.5]
8787
Interaction: 8788/20016 Out of bounds for computation -> 2.32308[0.001,0.5]
8789
8790
Interaction: 8791/20016 Out of bounds for computation -> 0.545206[0.001,0.5]
8792
Interaction: 8793/20016 Out of bounds for computation -> 0.678603[0.001,0.5]
Interaction: 8794/20016 Out of bounds for computation -> 0.697929[0.001,0.5]
8795
Interaction: 8796/20016 Out of bounds for computation -> 1.4612[0.001,0.5]
Interaction: 8797/20016 Out of bounds for computation -> 1.85937[0.001,0.5]
8798
8799
8800
8801
8802
8803
8804
8805
8806
8807
8808
8809
Interaction: 8810/20016 Out of bounds for computation -> 0.840697[0.001,0.5]
8811
8812
8813
Interaction: 8814/20016 Out of bounds for computation -> 1.45512[0.001,0.5]
8815
8816
8817
Interaction: 8818/20016 Out of bounds for computation -> 1.08884[0.001,0.5]
8819
Interaction: 8820/20016 Out of bounds for computation -> 1.75133[0.001,0.5]
Interaction: 8821/20016 Out of bounds for computation -> nan[0.001,0.5]
8822
8823
Interaction: 8824/20016 Out of bounds for computation -> 0.60224[0.001,0.5]
8825
8826
Interaction: 8827/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 8828/20016 Out of bounds for computation -> 2.54188[0.001,0.5]
8829
8830
Interaction: 8831/20016 Out of bounds for computation -> 2.18402[0.001,0.5]
Interaction: 8832/20016 Out of bounds for computation -> 1.43906[0.001,0.5]
8833
Interaction: 8834/20016 Out of bounds for computation -> 1.46807[0.001,0.5]
Interaction: 8835/20016 Out of bounds for computation -> 0.747623[0.001,0.5]
8836
Interaction: 8837/20016 Out of bounds for computation -> 1.65769[0.001,0.5]
Interaction: 8838/20016 Out of bounds for computation -> 1.47001[0.001,0.5]
8839
Interaction: 8840/20016 Out of bounds for computation -> 0.699355[0.001,0.5]
8841
8842
8843
Interaction: 8844/20016 Out of bounds for computation -> 0.95978[0.001,0.5]
8845
8846
8847
Interaction: 8848/20016 Out of bounds for computation -> 2.31931[0.001,0.5]
8849
Interaction: 8850/20016 Out of bounds for computation -> 2.83951[0.001,0.5]
8851
8852
Interaction: 8853/20016 Out of bounds for computation -> 2.16856[0.001,0.5]
Interaction: 8854/20016 Out of bounds for computation -> 0.906572[0.001,0.5]
Interaction: 8855/20016 Out of bounds for computation -> 1.43915[0.001,0.5]
8856
8857
Interaction: 8858/20016 Out of bounds for computation -> 1.42847[0.001,0.5]
8859
8860
8861
8862
8863
Interaction: 8864/20016 Out of bounds for computation -> 1.42518[0.001,0.5]
8865
8866
Interaction: 8867/20016 Out of bounds for computation -> 1.70352[0.001,0.5]
Interaction: 8868/20016 Out of bounds for computation -> 0.703237[0.001,0.5]
Interaction: 8869/20016 Out of bounds for computation -> 0.701918[0.001,0.5]
8870
Interaction: 8871/20016 Out of bounds for computation -> 1.32244[0.001,0.5]
8872
8873
8874
Interaction: 8875/20016 Out of bounds for computation -> 1.45684[0.001,0.5]
8876
8877
8878
8879
8880
Interaction: 8881/20016 Out of bounds for computation -> 1.48011[0.001,0.5]
Interaction: 8882/20016 Out of bounds for computation -> 1.46556[0.001,0.5]
8883
Interaction: 8884/20016 Out of bounds for computation -> 0.59156[0.001,0.5]
Interaction: 8885/20016 Out of bounds for computation -> 0.508121[0.001,0.5]
8886
8887
8888
Interaction: 8889/20016 Out of bounds for computation -> 0.583016[0.001,0.5]
8890
Interaction: 8891/20016 Out of bounds for computation -> 1.45349[0.001,0.5]
8892
8893
8894
8895
8896
8897
8898
Interaction: 8899/20016 Out of bounds for computation -> 0.739154[0.001,0.5]
Interaction: 8900/20016 Out of bounds for computation -> 2.61517[0.001,0.5]
8901
Interaction: 8902/20016 Out of bounds for computation -> 0.878202[0.001,0.5]
8903
Interaction: 8904/20016 Out of bounds for computation -> 2.01958[0.001,0.5]
Interaction: 8905/20016 Out of bounds for computation -> 0.534854[0.001,0.5]
8906
Interaction: 8907/20016 Out of bounds for computation -> 0.714868[0.001,0.5]
Interaction: 8908/20016 Out of bounds for computation -> 1.87487[0.001,0.5]
8909
8910
Interaction: 8911/20016 Out of bounds for computation -> 1.78353[0.001,0.5]
Interaction: 8912/20016 Out of bounds for computation -> 1.32092[0.001,0.5]
Interaction: 8913/20016 Out of bounds for computation -> 1.43306[0.001,0.5]
Interaction: 8914/20016 Out of bounds for computation -> 2.10266[0.001,0.5]
Interaction: 8915/20016 Out of bounds for computation -> 1.44569[0.001,0.5]
Interaction: 8916/20016 Out of bounds for computation -> 2.14286[0.001,0.5]
8917
8918
8919
Interaction: 8920/20016 Out of bounds for computation -> 0.687592[0.001,0.5]
Interaction: 8921/20016 Out of bounds for computation -> 2.45571[0.001,0.5]
Interaction: 8922/20016 Out of bounds for computation -> 0.506343[0.001,0.5]
Interaction: 8923/20016 Out of bounds for computation -> 1.06985[0.001,0.5]
Interaction: 8924/20016 Out of bounds for computation -> 0.597219[0.001,0.5]
8925
8926
Interaction: 8927/20016 Out of bounds for computation -> 1.0489[0.001,0.5]
8928
8929
8930
8931
8932
8933
8934
8935
Interaction: 8936/20016 Out of bounds for computation -> 1.17785[0.001,0.5]
Interaction: 8937/20016 Out of bounds for computation -> 1.4418[0.001,0.5]
8938
8939
8940
Interaction: 8941/20016 Out of bounds for computation -> 2.01628[0.001,0.5]
Interaction: 8942/20016 Out of bounds for computation -> 1.02996[0.001,0.5]
8943
Interaction: 8944/20016 Out of bounds for computation -> 1.40357[0.001,0.5]
8945
8946
Interaction: 8947/20016 Out of bounds for computation -> 0.608898[0.001,0.5]
8948
8949
8950
8951
8952
Interaction: 8953/20016 Out of bounds for computation -> 0.761728[0.001,0.5]
8954
8955
8956
Interaction: 8957/20016 Out of bounds for computation -> nan[0.001,0.5]
8958
8959
8960
8961
8962
Interaction: 8963/20016 Out of bounds for computation -> nan[0.001,0.5]
8964
8965
8966
Interaction: 8967/20016 Out of bounds for computation -> 2.32265[0.001,0.5]
Interaction: 8968/20016 Out of bounds for computation -> 0.508685[0.001,0.5]
Interaction: 8969/20016 Out of bounds for computation -> nan[0.001,0.5]
8970
8971
8972
Interaction: 8973/20016 Out of bounds for computation -> nan[0.001,0.5]
8974
8975
8976
8977
Interaction: 8978/20016 Out of bounds for computation -> 1.42545[0.001,0.5]
8979
8980
Interaction: 8981/20016 Out of bounds for computation -> 1.76871[0.001,0.5]
Interaction: 8982/20016 Out of bounds for computation -> 1.46166[0.001,0.5]
8983
Interaction: 8984/20016 Out of bounds for computation -> 0.738068[0.001,0.5]
Interaction: 8985/20016 Out of bounds for computation -> 2.24778[0.001,0.5]
8986
8987
8988
8989
Interaction: 8990/20016 Out of bounds for computation -> 0.550948[0.001,0.5]
8991
Interaction: 8992/20016 Out of bounds for computation -> 0.638276[0.001,0.5]
8993
8994
8995
8996
8997
Interaction: 8998/20016 Out of bounds for computation -> 0.8631[0.001,0.5]
8999
Interaction: 9000/20016 Out of bounds for computation -> 0.882273[0.001,0.5]
9001
9002
9003
Interaction: 9004/20016 Out of bounds for computation -> 1.27725[0.001,0.5]
Interaction: 9005/20016 Out of bounds for computation -> 1.12317[0.001,0.5]
Interaction: 9006/20016 Out of bounds for computation -> 1.82899[0.001,0.5]
Interaction: 9007/20016 Out of bounds for computation -> 1.89817[0.001,0.5]
Interaction: 9008/20016 Out of bounds for computation -> 0.995803[0.001,0.5]
Interaction: 9009/20016 Out of bounds for computation -> 0.679754[0.001,0.5]
Interaction: 9010/20016 Out of bounds for computation -> 1.04229[0.001,0.5]
Interaction: 9011/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9012/20016 Out of bounds for computation -> 1.46701[0.001,0.5]
9013
Interaction: 9014/20016 Out of bounds for computation -> 0.862696[0.001,0.5]
9015
Interaction: 9016/20016 Out of bounds for computation -> 1.62229[0.001,0.5]
Interaction: 9017/20016 Out of bounds for computation -> 2.25177[0.001,0.5]
Interaction: 9018/20016 Out of bounds for computation -> 1.99266[0.001,0.5]
Interaction: 9019/20016 Out of bounds for computation -> 2.35399[0.001,0.5]
9020
Interaction: 9021/20016 Out of bounds for computation -> 1.7567[0.001,0.5]
9022
9023
Interaction: 9024/20016 Out of bounds for computation -> 0.502176[0.001,0.5]
Interaction: 9025/20016 Out of bounds for computation -> 1.47413[0.001,0.5]
Interaction: 9026/20016 Out of bounds for computation -> 1.01962[0.001,0.5]
Interaction: 9027/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9028/20016 Out of bounds for computation -> 1.66717[0.001,0.5]
Interaction: 9029/20016 Out of bounds for computation -> 2.32685[0.001,0.5]
9030
Interaction: 9031/20016 Out of bounds for computation -> 2.1675[0.001,0.5]
Interaction: 9032/20016 Out of bounds for computation -> 1.46335[0.001,0.5]
9033
9034
Interaction: 9035/20016 Out of bounds for computation -> 1.69147[0.001,0.5]
9036
Interaction: 9037/20016 Out of bounds for computation -> 0.773131[0.001,0.5]
9038
Interaction: 9039/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9040/20016 Out of bounds for computation -> 1.09185[0.001,0.5]
Interaction: 9041/20016 Out of bounds for computation -> 0.913882[0.001,0.5]
Interaction: 9042/20016 Out of bounds for computation -> 0.597774[0.001,0.5]
9043
9044
9045
9046
Interaction: 9047/20016 Out of bounds for computation -> 0.601664[0.001,0.5]
Interaction: 9048/20016 Out of bounds for computation -> 2.01866[0.001,0.5]
9049
Interaction: 9050/20016 Out of bounds for computation -> 2.88381[0.001,0.5]
9051
9052
9053
9054
Interaction: 9055/20016 Out of bounds for computation -> 0.67057[0.001,0.5]
Interaction: 9056/20016 Out of bounds for computation -> 0.838122[0.001,0.5]
9057
Interaction: 9058/20016 Out of bounds for computation -> 1.41256[0.001,0.5]
9059
Interaction: 9060/20016 Out of bounds for computation -> 1.3698[0.001,0.5]
9061
Interaction: 9062/20016 Out of bounds for computation -> 2.60573[0.001,0.5]
9063
Interaction: 9064/20016 Out of bounds for computation -> 1.50216[0.001,0.5]
9065
9066
Interaction: 9067/20016 Out of bounds for computation -> 1.50096[0.001,0.5]
Interaction: 9068/20016 Out of bounds for computation -> 2.44943[0.001,0.5]
9069
Interaction: 9070/20016 Out of bounds for computation -> 0.754186[0.001,0.5]
9071
Interaction: 9072/20016 Out of bounds for computation -> 0.603736[0.001,0.5]
9073
9074
9075
9076
Interaction: 9077/20016 Out of bounds for computation -> 1.43468[0.001,0.5]
9078
Interaction: 9079/20016 Out of bounds for computation -> 0.779879[0.001,0.5]
9080
9081
9082
9083
Interaction: 9084/20016 Out of bounds for computation -> 0.636178[0.001,0.5]
9085
Interaction: 9086/20016 Out of bounds for computation -> 1.41078[0.001,0.5]
9087
Interaction: 9088/20016 Out of bounds for computation -> 0.611149[0.001,0.5]
9089
Interaction: 9090/20016 Out of bounds for computation -> 0.950861[0.001,0.5]
9091
9092
9093
9094
Interaction: 9095/20016 Out of bounds for computation -> 0.728437[0.001,0.5]
Interaction: 9096/20016 Out of bounds for computation -> 0.746494[0.001,0.5]
9097
Interaction: 9098/20016 Out of bounds for computation -> 0.741132[0.001,0.5]
9099
9100
9101
Interaction: 9102/20016 Out of bounds for computation -> 3.11795[0.001,0.5]
9103
9104
9105
9106
9107
Interaction: 9108/20016 Out of bounds for computation -> 2.29766[0.001,0.5]
Interaction: 9109/20016 Out of bounds for computation -> 2.60988[0.001,0.5]
Interaction: 9110/20016 Out of bounds for computation -> nan[0.001,0.5]
9111
Interaction: 9112/20016 Out of bounds for computation -> nan[0.001,0.5]
9113
Interaction: 9114/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9115/20016 Out of bounds for computation -> 1.44453[0.001,0.5]
Interaction: 9116/20016 Out of bounds for computation -> 0.580665[0.001,0.5]
9117
Interaction: 9118/20016 Out of bounds for computation -> nan[0.001,0.5]
9119
Interaction: 9120/20016 Out of bounds for computation -> 1.18729[0.001,0.5]
9121
Interaction: 9122/20016 Out of bounds for computation -> 1.41272[0.001,0.5]
9123
Interaction: 9124/20016 Out of bounds for computation -> 0.509499[0.001,0.5]
Interaction: 9125/20016 Out of bounds for computation -> 2.23787[0.001,0.5]
9126
Interaction: 9127/20016 Out of bounds for computation -> 1.42781[0.001,0.5]
Interaction: 9128/20016 Out of bounds for computation -> 0.725379[0.001,0.5]
Interaction: 9129/20016 Out of bounds for computation -> 1.63835[0.001,0.5]
9130
9131
Interaction: 9132/20016 Out of bounds for computation -> 0.557246[0.001,0.5]
Interaction: 9133/20016 Out of bounds for computation -> 1.40014[0.001,0.5]
Interaction: 9134/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9135/20016 Out of bounds for computation -> 1.98482[0.001,0.5]
Interaction: 9136/20016 Out of bounds for computation -> 0.617887[0.001,0.5]
Interaction: 9137/20016 Out of bounds for computation -> 1.60973[0.001,0.5]
9138
9139
9140
Interaction: 9141/20016 Out of bounds for computation -> 1.78265[0.001,0.5]
Interaction: 9142/20016 Out of bounds for computation -> 1.83596[0.001,0.5]
9143
Interaction: 9144/20016 Out of bounds for computation -> 0.839748[0.001,0.5]
9145
Interaction: 9146/20016 Out of bounds for computation -> 0.810419[0.001,0.5]
9147
Interaction: 9148/20016 Out of bounds for computation -> 0.751596[0.001,0.5]
Interaction: 9149/20016 Out of bounds for computation -> 0.680653[0.001,0.5]
Interaction: 9150/20016 Out of bounds for computation -> 2.13815[0.001,0.5]
9151
9152
9153
Interaction: 9154/20016 Out of bounds for computation -> 0.648888[0.001,0.5]
9155
9156
9157
Interaction: 9158/20016 Out of bounds for computation -> 0.724348[0.001,0.5]
Interaction: 9159/20016 Out of bounds for computation -> 0.563464[0.001,0.5]
Interaction: 9160/20016 Out of bounds for computation -> 0.621513[0.001,0.5]
9161
Interaction: 9162/20016 Out of bounds for computation -> 1.04523[0.001,0.5]
Interaction: 9163/20016 Out of bounds for computation -> 1.63141[0.001,0.5]
9164
9165
9166
Interaction: 9167/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9168/20016 Out of bounds for computation -> 0.805115[0.001,0.5]
Interaction: 9169/20016 Out of bounds for computation -> 3.03064[0.001,0.5]
9170
9171
Interaction: 9172/20016 Out of bounds for computation -> 1.60742[0.001,0.5]
9173
9174
9175
9176
Interaction: 9177/20016 Out of bounds for computation -> 0.761073[0.001,0.5]
9178
9179
9180
Interaction: 9181/20016 Out of bounds for computation -> 0.534585[0.001,0.5]
Interaction: 9182/20016 Out of bounds for computation -> 0.66751[0.001,0.5]
9183
9184
Interaction: 9185/20016 Out of bounds for computation -> 2.56763[0.001,0.5]
Interaction: 9186/20016 Out of bounds for computation -> 0.649619[0.001,0.5]
Interaction: 9187/20016 Out of bounds for computation -> 0.885312[0.001,0.5]
Interaction: 9188/20016 Out of bounds for computation -> 1.35536[0.001,0.5]
Interaction: 9189/20016 Out of bounds for computation -> 1.87955[0.001,0.5]
9190
Interaction: 9191/20016 Out of bounds for computation -> 0.549626[0.001,0.5]
Interaction: 9192/20016 Out of bounds for computation -> 0.698111[0.001,0.5]
Interaction: 9193/20016 Out of bounds for computation -> 1.80726[0.001,0.5]
9194
Interaction: 9195/20016 Out of bounds for computation -> 0.886185[0.001,0.5]
9196
9197
Interaction: 9198/20016 Out of bounds for computation -> 1.48505[0.001,0.5]
Interaction: 9199/20016 Out of bounds for computation -> 1.4264[0.001,0.5]
Interaction: 9200/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9201/20016 Out of bounds for computation -> 1.78288[0.001,0.5]
Interaction: 9202/20016 Out of bounds for computation -> 0.576461[0.001,0.5]
Interaction: 9203/20016 Out of bounds for computation -> 0.610178[0.001,0.5]
Interaction: 9204/20016 Out of bounds for computation -> 2.62734[0.001,0.5]
Interaction: 9205/20016 Out of bounds for computation -> 0.694462[0.001,0.5]
Interaction: 9206/20016 Out of bounds for computation -> nan[0.001,0.5]
9207
9208
Interaction: 9209/20016 Out of bounds for computation -> 1.28525[0.001,0.5]
Interaction: 9210/20016 Out of bounds for computation -> 1.41489[0.001,0.5]
9211
Interaction: 9212/20016 Out of bounds for computation -> 0.874046[0.001,0.5]
Interaction: 9213/20016 Out of bounds for computation -> 0.703334[0.001,0.5]
Interaction: 9214/20016 Out of bounds for computation -> 1.33049[0.001,0.5]
Interaction: 9215/20016 Out of bounds for computation -> 0.546909[0.001,0.5]
Interaction: 9216/20016 Out of bounds for computation -> 0.787466[0.001,0.5]
9217
9218
9219
9220
9221
9222
9223
9224
Interaction: 9225/20016 Out of bounds for computation -> nan[0.001,0.5]
9226
Interaction: 9227/20016 Out of bounds for computation -> nan[0.001,0.5]
9228
9229
Interaction: 9230/20016 Out of bounds for computation -> 2.01547[0.001,0.5]
9231
9232
Interaction: 9233/20016 Out of bounds for computation -> 1.6348[0.001,0.5]
Interaction: 9234/20016 Out of bounds for computation -> 2.1155[0.001,0.5]
9235
Interaction: 9236/20016 Out of bounds for computation -> 2.65264[0.001,0.5]
9237
9238
9239
9240
Interaction: 9241/20016 Out of bounds for computation -> 1.46684[0.001,0.5]
Interaction: 9242/20016 Out of bounds for computation -> 0.956668[0.001,0.5]
9243
9244
Interaction: 9245/20016 Out of bounds for computation -> 0.67609[0.001,0.5]
Interaction: 9246/20016 Out of bounds for computation -> 2.99366[0.001,0.5]
9247
9248
Interaction: 9249/20016 Out of bounds for computation -> 0.631518[0.001,0.5]
9250
9251
9252
Interaction: 9253/20016 Out of bounds for computation -> 1.68698[0.001,0.5]
Interaction: 9254/20016 Out of bounds for computation -> 0.733962[0.001,0.5]
Interaction: 9255/20016 Out of bounds for computation -> 2.83665[0.001,0.5]
9256
9257
Interaction: 9258/20016 Out of bounds for computation -> 1.44466[0.001,0.5]
Interaction: 9259/20016 Out of bounds for computation -> 2.35824[0.001,0.5]
9260
9261
Interaction: 9262/20016 Out of bounds for computation -> 0.850863[0.001,0.5]
Interaction: 9263/20016 Out of bounds for computation -> 0.574517[0.001,0.5]
Interaction: 9264/20016 Out of bounds for computation -> 0.736288[0.001,0.5]
9265
Interaction: 9266/20016 Out of bounds for computation -> 1.90944[0.001,0.5]
9267
9268
Interaction: 9269/20016 Out of bounds for computation -> 1.94769[0.001,0.5]
9270
9271
9272
9273
9274
9275
Interaction: 9276/20016 Out of bounds for computation -> 0.801521[0.001,0.5]
Interaction: 9277/20016 Out of bounds for computation -> 1.64525[0.001,0.5]
9278
Interaction: 9279/20016 Out of bounds for computation -> 2.21066[0.001,0.5]
Interaction: 9280/20016 Out of bounds for computation -> 0.549461[0.001,0.5]
Interaction: 9281/20016 Out of bounds for computation -> 0.662309[0.001,0.5]
Interaction: 9282/20016 Out of bounds for computation -> 0.58543[0.001,0.5]
9283
Interaction: 9284/20016 Out of bounds for computation -> 0.508199[0.001,0.5]
9285
Interaction: 9286/20016 Out of bounds for computation -> 0.536885[0.001,0.5]
9287
9288
Interaction: 9289/20016 Out of bounds for computation -> 1.58438[0.001,0.5]
9290
Interaction: 9291/20016 Out of bounds for computation -> 1.73972[0.001,0.5]
Interaction: 9292/20016 Out of bounds for computation -> 2.40424[0.001,0.5]
9293
9294
Interaction: 9295/20016 Out of bounds for computation -> 0.539376[0.001,0.5]
9296
9297
Interaction: 9298/20016 Out of bounds for computation -> 0.924816[0.001,0.5]
Interaction: 9299/20016 Out of bounds for computation -> 1.32144[0.001,0.5]
Interaction: 9300/20016 Out of bounds for computation -> 1.35067[0.001,0.5]
Interaction: 9301/20016 Out of bounds for computation -> 1.47508[0.001,0.5]
9302
Interaction: 9303/20016 Out of bounds for computation -> 0.565757[0.001,0.5]
9304
Interaction: 9305/20016 Out of bounds for computation -> 2.17973[0.001,0.5]
9306
Interaction: 9307/20016 Out of bounds for computation -> 0.740814[0.001,0.5]
Interaction: 9308/20016 Out of bounds for computation -> 1.03556[0.001,0.5]
9309
Interaction: 9310/20016 Out of bounds for computation -> 1.9493[0.001,0.5]
9311
Interaction: 9312/20016 Out of bounds for computation -> 1.72432[0.001,0.5]
Interaction: 9313/20016 Out of bounds for computation -> nan[0.001,0.5]
9314
9315
9316
Interaction: 9317/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9318/20016 Out of bounds for computation -> 2.18125[0.001,0.5]
9319
9320
Interaction: 9321/20016 Out of bounds for computation -> 1.43486[0.001,0.5]
Interaction: 9322/20016 Out of bounds for computation -> 0.624228[0.001,0.5]
9323
Interaction: 9324/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9325/20016 Out of bounds for computation -> 2.17992[0.001,0.5]
Interaction: 9326/20016 Out of bounds for computation -> 1.23639[0.001,0.5]
Interaction: 9327/20016 Out of bounds for computation -> 2.34004[0.001,0.5]
Interaction: 9328/20016 Out of bounds for computation -> 0.582614[0.001,0.5]
9329
Interaction: 9330/20016 Out of bounds for computation -> 1.34776[0.001,0.5]
Interaction: 9331/20016 Out of bounds for computation -> 0.990744[0.001,0.5]
9332
Interaction: 9333/20016 Out of bounds for computation -> 1.20743[0.001,0.5]
9334
9335
Interaction: 9336/20016 Out of bounds for computation -> 2.45745[0.001,0.5]
9337
Interaction: 9338/20016 Out of bounds for computation -> 0.947026[0.001,0.5]
Interaction: 9339/20016 Out of bounds for computation -> 2.36037[0.001,0.5]
Interaction: 9340/20016 Out of bounds for computation -> 1.79586[0.001,0.5]
Interaction: 9341/20016 Out of bounds for computation -> 0.671496[0.001,0.5]
Interaction: 9342/20016 Out of bounds for computation -> 1.45368[0.001,0.5]
9343
9344
9345
Interaction: 9346/20016 Out of bounds for computation -> 0.537485[0.001,0.5]
9347
9348
Interaction: 9349/20016 Out of bounds for computation -> 0.713294[0.001,0.5]
9350
Interaction: 9351/20016 Out of bounds for computation -> 0.722594[0.001,0.5]
Interaction: 9352/20016 Out of bounds for computation -> 0.770477[0.001,0.5]
9353
Interaction: 9354/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9355/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9356/20016 Out of bounds for computation -> 2.40603[0.001,0.5]
9357
9358
9359
Interaction: 9360/20016 Out of bounds for computation -> 1.61343[0.001,0.5]
9361
9362
9363
Interaction: 9364/20016 Out of bounds for computation -> 2.12594[0.001,0.5]
9365
Interaction: 9366/20016 Out of bounds for computation -> 0.579926[0.001,0.5]
Interaction: 9367/20016 Out of bounds for computation -> 1.29852[0.001,0.5]
9368
Interaction: 9369/20016 Out of bounds for computation -> nan[0.001,0.5]
9370
Interaction: 9371/20016 Out of bounds for computation -> 1.64316[0.001,0.5]
9372
Interaction: 9373/20016 Out of bounds for computation -> 0.822732[0.001,0.5]
9374
Interaction: 9375/20016 Out of bounds for computation -> 1.11498[0.001,0.5]
9376
Interaction: 9377/20016 Out of bounds for computation -> 2.08867[0.001,0.5]
9378
Interaction: 9379/20016 Out of bounds for computation -> 0.870737[0.001,0.5]
9380
Interaction: 9381/20016 Out of bounds for computation -> nan[0.001,0.5]
9382
Interaction: 9383/20016 Out of bounds for computation -> 0.554692[0.001,0.5]
9384
Interaction: 9385/20016 Out of bounds for computation -> 1.45305[0.001,0.5]
Interaction: 9386/20016 Out of bounds for computation -> 0.558946[0.001,0.5]
9387
9388
9389
Interaction: 9390/20016 Out of bounds for computation -> 1.27673[0.001,0.5]
9391
Interaction: 9392/20016 Out of bounds for computation -> 1.46597[0.001,0.5]
9393
9394
Interaction: 9395/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9396/20016 Out of bounds for computation -> 0.785586[0.001,0.5]
Interaction: 9397/20016 Out of bounds for computation -> 1.17062[0.001,0.5]
9398
Interaction: 9399/20016 Out of bounds for computation -> 0.738789[0.001,0.5]
Interaction: 9400/20016 Out of bounds for computation -> 1.69709[0.001,0.5]
9401
9402
9403
9404
Interaction: 9405/20016 Out of bounds for computation -> 0.593651[0.001,0.5]
Interaction: 9406/20016 Out of bounds for computation -> 2.44042[0.001,0.5]
9407
9408
Interaction: 9409/20016 Out of bounds for computation -> nan[0.001,0.5]
9410
Interaction: 9411/20016 Out of bounds for computation -> 0.832272[0.001,0.5]
9412
Interaction: 9413/20016 Out of bounds for computation -> 2.34322[0.001,0.5]
9414
9415
Interaction: 9416/20016 Out of bounds for computation -> 0.827473[0.001,0.5]
9417
Interaction: 9418/20016 Out of bounds for computation -> 2.42278[0.001,0.5]
9419
Interaction: 9420/20016 Out of bounds for computation -> 0.966718[0.001,0.5]
9421
9422
9423
9424
Interaction: 9425/20016 Out of bounds for computation -> 1.50237[0.001,0.5]
Interaction: 9426/20016 Out of bounds for computation -> 2.0508[0.001,0.5]
9427
9428
9429
9430
Interaction: 9431/20016 Out of bounds for computation -> 0.799104[0.001,0.5]
9432
Interaction: 9433/20016 Out of bounds for computation -> 1.16514[0.001,0.5]
Interaction: 9434/20016 Out of bounds for computation -> 1.07321[0.001,0.5]
Interaction: 9435/20016 Out of bounds for computation -> 0.585687[0.001,0.5]
9436
9437
9438
Interaction: 9439/20016 Out of bounds for computation -> 1.89231[0.001,0.5]
9440
Interaction: 9441/20016 Out of bounds for computation -> 1.43292[0.001,0.5]
9442
9443
9444
Interaction: 9445/20016 Out of bounds for computation -> 0.64197[0.001,0.5]
Interaction: 9446/20016 Out of bounds for computation -> 0.609922[0.001,0.5]
9447
9448
9449
Interaction: 9450/20016 Out of bounds for computation -> 2.32059[0.001,0.5]
9451
Interaction: 9452/20016 Out of bounds for computation -> 0.927549[0.001,0.5]
9453
Interaction: 9454/20016 Out of bounds for computation -> 1.72576[0.001,0.5]
Interaction: 9455/20016 Out of bounds for computation -> 0.761384[0.001,0.5]
Interaction: 9456/20016 Out of bounds for computation -> 0.620224[0.001,0.5]
Interaction: 9457/20016 Out of bounds for computation -> 0.982791[0.001,0.5]
9458
9459
9460
Interaction: 9461/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9462/20016 Out of bounds for computation -> 1.66905[0.001,0.5]
Interaction: 9463/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9464/20016 Out of bounds for computation -> 0.561628[0.001,0.5]
Interaction: 9465/20016 Out of bounds for computation -> 2.21284[0.001,0.5]
9466
9467
9468
Interaction: 9469/20016 Out of bounds for computation -> 1.87413[0.001,0.5]
Interaction: 9470/20016 Out of bounds for computation -> 0.864751[0.001,0.5]
Interaction: 9471/20016 Out of bounds for computation -> nan[0.001,0.5]
9472
Interaction: 9473/20016 Out of bounds for computation -> 0.89976[0.001,0.5]
Interaction: 9474/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9475/20016 Out of bounds for computation -> 1.45967[0.001,0.5]
Interaction: 9476/20016 Out of bounds for computation -> 1.32793[0.001,0.5]
9477
Interaction: 9478/20016 Out of bounds for computation -> 2.11151[0.001,0.5]
9479
9480
9481
9482
Interaction: 9483/20016 Out of bounds for computation -> 0.920925[0.001,0.5]
9484
9485
Interaction: 9486/20016 Out of bounds for computation -> 0.723828[0.001,0.5]
Interaction: 9487/20016 Out of bounds for computation -> 1.51965[0.001,0.5]
Interaction: 9488/20016 Out of bounds for computation -> 0.834555[0.001,0.5]
9489
Interaction: 9490/20016 Out of bounds for computation -> 1.56049[0.001,0.5]
9491
Interaction: 9492/20016 Out of bounds for computation -> nan[0.001,0.5]
9493
9494
Interaction: 9495/20016 Out of bounds for computation -> 1.18376[0.001,0.5]
Interaction: 9496/20016 Out of bounds for computation -> 1.65335[0.001,0.5]
Interaction: 9497/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9498/20016 Out of bounds for computation -> 1.96379[0.001,0.5]
Interaction: 9499/20016 Out of bounds for computation -> 0.573506[0.001,0.5]
9500
9501
Interaction: 9502/20016 Out of bounds for computation -> 0.535548[0.001,0.5]
Interaction: 9503/20016 Out of bounds for computation -> 1.20621[0.001,0.5]
9504
9505
Interaction: 9506/20016 Out of bounds for computation -> 1.4528[0.001,0.5]
Interaction: 9507/20016 Out of bounds for computation -> 0.723363[0.001,0.5]
Interaction: 9508/20016 Out of bounds for computation -> 0.605177[0.001,0.5]
9509
Interaction: 9510/20016 Out of bounds for computation -> 0.586772[0.001,0.5]
Interaction: 9511/20016 Out of bounds for computation -> 0.516066[0.001,0.5]
9512
9513
9514
9515
9516
9517
Interaction: 9518/20016 Out of bounds for computation -> 0.612278[0.001,0.5]
9519
Interaction: 9520/20016 Out of bounds for computation -> 0.926267[0.001,0.5]
9521
9522
9523
Interaction: 9524/20016 Out of bounds for computation -> 1.41462[0.001,0.5]
Interaction: 9525/20016 Out of bounds for computation -> 0.889335[0.001,0.5]
Interaction: 9526/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9527/20016 Out of bounds for computation -> 1.11653[0.001,0.5]
Interaction: 9528/20016 Out of bounds for computation -> 0.522897[0.001,0.5]
Interaction: 9529/20016 Out of bounds for computation -> 1.87648[0.001,0.5]
9530
Interaction: 9531/20016 Out of bounds for computation -> nan[0.001,0.5]
9532
Interaction: 9533/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9534/20016 Out of bounds for computation -> 1.44547[0.001,0.5]
9535
Interaction: 9536/20016 Out of bounds for computation -> 2.17265[0.001,0.5]
9537
9538
9539
Interaction: 9540/20016 Out of bounds for computation -> 1.38544[0.001,0.5]
9541
Interaction: 9542/20016 Out of bounds for computation -> 1.94914[0.001,0.5]
9543
9544
Interaction: 9545/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9546/20016 Out of bounds for computation -> 2.14804[0.001,0.5]
9547
Interaction: 9548/20016 Out of bounds for computation -> 1.82112[0.001,0.5]
9549
9550
9551
Interaction: 9552/20016 Out of bounds for computation -> 0.74656[0.001,0.5]
9553
Interaction: 9554/20016 Out of bounds for computation -> 1.35953[0.001,0.5]
Interaction: 9555/20016 Out of bounds for computation -> 0.710744[0.001,0.5]
9556
9557
9558
9559
9560
9561
Interaction: 9562/20016 Out of bounds for computation -> 1.4645[0.001,0.5]
9563
9564
9565
9566
Interaction: 9567/20016 Out of bounds for computation -> 0.814753[0.001,0.5]
Interaction: 9568/20016 Out of bounds for computation -> 0.774275[0.001,0.5]
9569
9570
Interaction: 9571/20016 Out of bounds for computation -> 0.741511[0.001,0.5]
9572
9573
Interaction: 9574/20016 Out of bounds for computation -> 0.618614[0.001,0.5]
9575
9576
9577
9578
Interaction: 9579/20016 Out of bounds for computation -> 0.551395[0.001,0.5]
9580
Interaction: 9581/20016 Out of bounds for computation -> 0.712089[0.001,0.5]
Interaction: 9582/20016 Out of bounds for computation -> 0.849592[0.001,0.5]
9583
Interaction: 9584/20016 Out of bounds for computation -> 1.06251[0.001,0.5]
Interaction: 9585/20016 Out of bounds for computation -> 0.531669[0.001,0.5]
Interaction: 9586/20016 Out of bounds for computation -> 1.00225[0.001,0.5]
Interaction: 9587/20016 Out of bounds for computation -> 0.644371[0.001,0.5]
Interaction: 9588/20016 Out of bounds for computation -> 0.623845[0.001,0.5]
9589
9590
9591
Interaction: 9592/20016 Out of bounds for computation -> 1.66593[0.001,0.5]
9593
Interaction: 9594/20016 Out of bounds for computation -> 0.760256[0.001,0.5]
9595
9596
Interaction: 9597/20016 Out of bounds for computation -> 0.839121[0.001,0.5]
9598
9599
9600
Interaction: 9601/20016 Out of bounds for computation -> 0.697051[0.001,0.5]
Interaction: 9602/20016 Out of bounds for computation -> 0.636587[0.001,0.5]
Interaction: 9603/20016 Out of bounds for computation -> 2.31298[0.001,0.5]
Interaction: 9604/20016 Out of bounds for computation -> 0.746702[0.001,0.5]
9605
9606
Interaction: 9607/20016 Out of bounds for computation -> 1.48675[0.001,0.5]
9608
Interaction: 9609/20016 Out of bounds for computation -> 1.54959[0.001,0.5]
9610
Interaction: 9611/20016 Out of bounds for computation -> nan[0.001,0.5]
9612
9613
9614
Interaction: 9615/20016 Out of bounds for computation -> 2.65145[0.001,0.5]
9616
9617
9618
9619
9620
9621
9622
Interaction: 9623/20016 Out of bounds for computation -> 2.55485[0.001,0.5]
9624
9625
9626
Interaction: 9627/20016 Out of bounds for computation -> 2.56159[0.001,0.5]
Interaction: 9628/20016 Out of bounds for computation -> 0.659346[0.001,0.5]
9629
9630
Interaction: 9631/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9632/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9633/20016 Out of bounds for computation -> 0.525341[0.001,0.5]
9634
Interaction: 9635/20016 Out of bounds for computation -> 1.60526[0.001,0.5]
9636
9637
Interaction: 9638/20016 Out of bounds for computation -> 0.65557[0.001,0.5]
Interaction: 9639/20016 Out of bounds for computation -> 0.681265[0.001,0.5]
Interaction: 9640/20016 Out of bounds for computation -> 2.23038[0.001,0.5]
Interaction: 9641/20016 Out of bounds for computation -> 2.86211[0.001,0.5]
Interaction: 9642/20016 Out of bounds for computation -> 1.36636[0.001,0.5]
Interaction: 9643/20016 Out of bounds for computation -> nan[0.001,0.5]
9644
9645
9646
Interaction: 9647/20016 Out of bounds for computation -> nan[0.001,0.5]
9648
9649
9650
Interaction: 9651/20016 Out of bounds for computation -> 1.35819[0.001,0.5]
Interaction: 9652/20016 Out of bounds for computation -> 0.659097[0.001,0.5]
9653
Interaction: 9654/20016 Out of bounds for computation -> nan[0.001,0.5]
9655
9656
9657
Interaction: 9658/20016 Out of bounds for computation -> 0.666292[0.001,0.5]
Interaction: 9659/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9660/20016 Out of bounds for computation -> 0.737687[0.001,0.5]
9661
9662
9663
9664
9665
9666
9667
9668
Interaction: 9669/20016 Out of bounds for computation -> 0.510139[0.001,0.5]
Interaction: 9670/20016 Out of bounds for computation -> 0.948841[0.001,0.5]
Interaction: 9671/20016 Out of bounds for computation -> 0.946709[0.001,0.5]
Interaction: 9672/20016 Out of bounds for computation -> 1.44836[0.001,0.5]
Interaction: 9673/20016 Out of bounds for computation -> 0.586628[0.001,0.5]
Interaction: 9674/20016 Out of bounds for computation -> 0.826194[0.001,0.5]
Interaction: 9675/20016 Out of bounds for computation -> 1.78184[0.001,0.5]
9676
9677
9678
9679
9680
Interaction: 9681/20016 Out of bounds for computation -> 1.0419[0.001,0.5]
Interaction: 9682/20016 Out of bounds for computation -> 0.622368[0.001,0.5]
Interaction: 9683/20016 Out of bounds for computation -> 1.29337[0.001,0.5]
Interaction: 9684/20016 Out of bounds for computation -> 1.55542[0.001,0.5]
9685
Interaction: 9686/20016 Out of bounds for computation -> 0.991517[0.001,0.5]
Interaction: 9687/20016 Out of bounds for computation -> 1.82898[0.001,0.5]
Interaction: 9688/20016 Out of bounds for computation -> 2.54175[0.001,0.5]
9689
9690
Interaction: 9691/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9692/20016 Out of bounds for computation -> nan[0.001,0.5]
9693
Interaction: 9694/20016 Out of bounds for computation -> 1.31631[0.001,0.5]
Interaction: 9695/20016 Out of bounds for computation -> 0.545935[0.001,0.5]
Interaction: 9696/20016 Out of bounds for computation -> 1.43445[0.001,0.5]
Interaction: 9697/20016 Out of bounds for computation -> 2.24723[0.001,0.5]
9698
Interaction: 9699/20016 Out of bounds for computation -> nan[0.001,0.5]
9700
9701
Interaction: 9702/20016 Out of bounds for computation -> 1.44478[0.001,0.5]
Interaction: 9703/20016 Out of bounds for computation -> 1.77718[0.001,0.5]
Interaction: 9704/20016 Out of bounds for computation -> 0.550306[0.001,0.5]
9705
Interaction: 9706/20016 Out of bounds for computation -> 1.69289[0.001,0.5]
Interaction: 9707/20016 Out of bounds for computation -> 2.40088[0.001,0.5]
9708
Interaction: 9709/20016 Out of bounds for computation -> 1.89389[0.001,0.5]
Interaction: 9710/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9711/20016 Out of bounds for computation -> 0.673747[0.001,0.5]
Interaction: 9712/20016 Out of bounds for computation -> nan[0.001,0.5]
9713
9714
9715
9716
Interaction: 9717/20016 Out of bounds for computation -> 1.02392[0.001,0.5]
Interaction: 9718/20016 Out of bounds for computation -> 0.833315[0.001,0.5]
9719
Interaction: 9720/20016 Out of bounds for computation -> 0.54504[0.001,0.5]
Interaction: 9721/20016 Out of bounds for computation -> 2.69237[0.001,0.5]
9722
Interaction: 9723/20016 Out of bounds for computation -> 2.09668[0.001,0.5]
Interaction: 9724/20016 Out of bounds for computation -> 3.04246[0.001,0.5]
9725
9726
9727
Interaction: 9728/20016 Out of bounds for computation -> 0.691362[0.001,0.5]
Interaction: 9729/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9730/20016 Out of bounds for computation -> 2.14719[0.001,0.5]
Interaction: 9731/20016 Out of bounds for computation -> 1.4623[0.001,0.5]
9732
Interaction: 9733/20016 Out of bounds for computation -> 1.60365[0.001,0.5]
9734
Interaction: 9735/20016 Out of bounds for computation -> nan[0.001,0.5]
9736
Interaction: 9737/20016 Out of bounds for computation -> 1.23735[0.001,0.5]
Interaction: 9738/20016 Out of bounds for computation -> 2.51805[0.001,0.5]
9739
9740
Interaction: 9741/20016 Out of bounds for computation -> nan[0.001,0.5]
9742
9743
9744
Interaction: 9745/20016 Out of bounds for computation -> nan[0.001,0.5]
9746
Interaction: 9747/20016 Out of bounds for computation -> 0.987415[0.001,0.5]
9748
Interaction: 9749/20016 Out of bounds for computation -> 0.656148[0.001,0.5]
9750
Interaction: 9751/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9752/20016 Out of bounds for computation -> 1.43983[0.001,0.5]
Interaction: 9753/20016 Out of bounds for computation -> 2.13965[0.001,0.5]
9754
Interaction: 9755/20016 Out of bounds for computation -> 1.44[0.001,0.5]
Interaction: 9756/20016 Out of bounds for computation -> 1.48363[0.001,0.5]
Interaction: 9757/20016 Out of bounds for computation -> 2.31426[0.001,0.5]
9758
9759
Interaction: 9760/20016 Out of bounds for computation -> 2.71789[0.001,0.5]
Interaction: 9761/20016 Out of bounds for computation -> 0.847053[0.001,0.5]
Interaction: 9762/20016 Out of bounds for computation -> 2.32139[0.001,0.5]
Interaction: 9763/20016 Out of bounds for computation -> 1.80194[0.001,0.5]
9764
Interaction: 9765/20016 Out of bounds for computation -> 1.16587[0.001,0.5]
Interaction: 9766/20016 Out of bounds for computation -> 1.83719[0.001,0.5]
Interaction: 9767/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9768/20016 Out of bounds for computation -> 1.76069[0.001,0.5]
Interaction: 9769/20016 Out of bounds for computation -> 0.992304[0.001,0.5]
Interaction: 9770/20016 Out of bounds for computation -> 0.700986[0.001,0.5]
9771
9772
Interaction: 9773/20016 Out of bounds for computation -> 1.89691[0.001,0.5]
9774
Interaction: 9775/20016 Out of bounds for computation -> 1.98493[0.001,0.5]
9776
Interaction: 9777/20016 Out of bounds for computation -> 1.74565[0.001,0.5]
Interaction: 9778/20016 Out of bounds for computation -> 1.43647[0.001,0.5]
9779
9780
Interaction: 9781/20016 Out of bounds for computation -> 2.24385[0.001,0.5]
Interaction: 9782/20016 Out of bounds for computation -> 0.684078[0.001,0.5]
9783
9784
Interaction: 9785/20016 Out of bounds for computation -> 0.881962[0.001,0.5]
9786
Interaction: 9787/20016 Out of bounds for computation -> 1.32857[0.001,0.5]
Interaction: 9788/20016 Out of bounds for computation -> 2.85222[0.001,0.5]
9789
Interaction: 9790/20016 Out of bounds for computation -> 0.631198[0.001,0.5]
Interaction: 9791/20016 Out of bounds for computation -> 0.663067[0.001,0.5]
9792
Interaction: 9793/20016 Out of bounds for computation -> 2.37688[0.001,0.5]
Interaction: 9794/20016 Out of bounds for computation -> 1.614[0.001,0.5]
Interaction: 9795/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9796/20016 Out of bounds for computation -> 0.556445[0.001,0.5]
Interaction: 9797/20016 Out of bounds for computation -> 0.753922[0.001,0.5]
9798
9799
Interaction: 9800/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9801/20016 Out of bounds for computation -> 0.760144[0.001,0.5]
9802
9803
Interaction: 9804/20016 Out of bounds for computation -> 0.527154[0.001,0.5]
Interaction: 9805/20016 Out of bounds for computation -> 0.591512[0.001,0.5]
9806
9807
Interaction: 9808/20016 Out of bounds for computation -> 0.503542[0.001,0.5]
9809
9810
Interaction: 9811/20016 Out of bounds for computation -> 1.76099[0.001,0.5]
Interaction: 9812/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9813/20016 Out of bounds for computation -> 0.619224[0.001,0.5]
Interaction: 9814/20016 Out of bounds for computation -> 0.735471[0.001,0.5]
9815
9816
9817
9818
Interaction: 9819/20016 Out of bounds for computation -> 1.28808[0.001,0.5]
Interaction: 9820/20016 Out of bounds for computation -> 0.720446[0.001,0.5]
9821
Interaction: 9822/20016 Out of bounds for computation -> 0.98063[0.001,0.5]
Interaction: 9823/20016 Out of bounds for computation -> 0.681197[0.001,0.5]
9824
Interaction: 9825/20016 Out of bounds for computation -> nan[0.001,0.5]
9826
Interaction: 9827/20016 Out of bounds for computation -> 1.43827[0.001,0.5]
Interaction: 9828/20016 Out of bounds for computation -> 1.92838[0.001,0.5]
Interaction: 9829/20016 Out of bounds for computation -> 2.13757[0.001,0.5]
9830
9831
Interaction: 9832/20016 Out of bounds for computation -> 0.678627[0.001,0.5]
9833
9834
9835
Interaction: 9836/20016 Out of bounds for computation -> 1.35477[0.001,0.5]
9837
Interaction: 9838/20016 Out of bounds for computation -> 1.59268[0.001,0.5]
9839
Interaction: 9840/20016 Out of bounds for computation -> nan[0.001,0.5]
9841
9842
9843
Interaction: 9844/20016 Out of bounds for computation -> 2.65222[0.001,0.5]
9845
9846
Interaction: 9847/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9848/20016 Out of bounds for computation -> 0.869869[0.001,0.5]
9849
9850
Interaction: 9851/20016 Out of bounds for computation -> 0.790524[0.001,0.5]
9852
9853
9854
9855
Interaction: 9856/20016 Out of bounds for computation -> 1.97222[0.001,0.5]
Interaction: 9857/20016 Out of bounds for computation -> 1.49152[0.001,0.5]
Interaction: 9858/20016 Out of bounds for computation -> 1.20812[0.001,0.5]
9859
Interaction: 9860/20016 Out of bounds for computation -> 0.711929[0.001,0.5]
9861
Interaction: 9862/20016 Out of bounds for computation -> 0.863537[0.001,0.5]
9863
Interaction: 9864/20016 Out of bounds for computation -> 1.61014[0.001,0.5]
9865
Interaction: 9866/20016 Out of bounds for computation -> 1.3824[0.001,0.5]
9867
Interaction: 9868/20016 Out of bounds for computation -> 1.14877[0.001,0.5]
9869
Interaction: 9870/20016 Out of bounds for computation -> 1.53642[0.001,0.5]
9871
Interaction: 9872/20016 Out of bounds for computation -> 0.707307[0.001,0.5]
9873
9874
9875
Interaction: 9876/20016 Out of bounds for computation -> 1.66194[0.001,0.5]
Interaction: 9877/20016 Out of bounds for computation -> 0.831485[0.001,0.5]
Interaction: 9878/20016 Out of bounds for computation -> 1.76701[0.001,0.5]
Interaction: 9879/20016 Out of bounds for computation -> 1.78996[0.001,0.5]
9880
9881
9882
Interaction: 9883/20016 Out of bounds for computation -> 1.45946[0.001,0.5]
9884
Interaction: 9885/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9886/20016 Out of bounds for computation -> 2.23237[0.001,0.5]
Interaction: 9887/20016 Out of bounds for computation -> 1.22588[0.001,0.5]
Interaction: 9888/20016 Out of bounds for computation -> 0.689351[0.001,0.5]
9889
Interaction: 9890/20016 Out of bounds for computation -> 2.41347[0.001,0.5]
9891
Interaction: 9892/20016 Out of bounds for computation -> 0.531178[0.001,0.5]
9893
Interaction: 9894/20016 Out of bounds for computation -> 1.07488[0.001,0.5]
9895
9896
9897
9898
9899
9900
Interaction: 9901/20016 Out of bounds for computation -> 0.666397[0.001,0.5]
9902
Interaction: 9903/20016 Out of bounds for computation -> 1.30421[0.001,0.5]
Interaction: 9904/20016 Out of bounds for computation -> 0.760882[0.001,0.5]
9905
Interaction: 9906/20016 Out of bounds for computation -> 1.32119[0.001,0.5]
9907
9908
9909
Interaction: 9910/20016 Out of bounds for computation -> 0.590967[0.001,0.5]
Interaction: 9911/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9912/20016 Out of bounds for computation -> 2.70737[0.001,0.5]
9913
Interaction: 9914/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9915/20016 Out of bounds for computation -> 0.585039[0.001,0.5]
9916
Interaction: 9917/20016 Out of bounds for computation -> 0.69592[0.001,0.5]
Interaction: 9918/20016 Out of bounds for computation -> 2.25076[0.001,0.5]
Interaction: 9919/20016 Out of bounds for computation -> 0.675562[0.001,0.5]
Interaction: 9920/20016 Out of bounds for computation -> 0.685174[0.001,0.5]
9921
9922
9923
9924
Interaction: 9925/20016 Out of bounds for computation -> 0.625673[0.001,0.5]
9926
Interaction: 9927/20016 Out of bounds for computation -> 0.768841[0.001,0.5]
Interaction: 9928/20016 Out of bounds for computation -> 2.09958[0.001,0.5]
Interaction: 9929/20016 Out of bounds for computation -> 2.88429[0.001,0.5]
9930
Interaction: 9931/20016 Out of bounds for computation -> 1.62867[0.001,0.5]
Interaction: 9932/20016 Out of bounds for computation -> 0.709334[0.001,0.5]
Interaction: 9933/20016 Out of bounds for computation -> 0.743783[0.001,0.5]
Interaction: 9934/20016 Out of bounds for computation -> 1.44784[0.001,0.5]
Interaction: 9935/20016 Out of bounds for computation -> 0.869442[0.001,0.5]
9936
Interaction: 9937/20016 Out of bounds for computation -> 2.30897[0.001,0.5]
9938
9939
9940
9941
9942
Interaction: 9943/20016 Out of bounds for computation -> 0.757867[0.001,0.5]
9944
9945
9946
9947
Interaction: 9948/20016 Out of bounds for computation -> 2.22452[0.001,0.5]
Interaction: 9949/20016 Out of bounds for computation -> 1.49372[0.001,0.5]
9950
9951
Interaction: 9952/20016 Out of bounds for computation -> 1.41147[0.001,0.5]
Interaction: 9953/20016 Out of bounds for computation -> 1.50382[0.001,0.5]
Interaction: 9954/20016 Out of bounds for computation -> 0.75385[0.001,0.5]
Interaction: 9955/20016 Out of bounds for computation -> 0.504438[0.001,0.5]
Interaction: 9956/20016 Out of bounds for computation -> nan[0.001,0.5]
9957
9958
Interaction: 9959/20016 Out of bounds for computation -> 0.722975[0.001,0.5]
Interaction: 9960/20016 Out of bounds for computation -> 1.81242[0.001,0.5]
Interaction: 9961/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9962/20016 Out of bounds for computation -> 2.29769[0.001,0.5]
Interaction: 9963/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9964/20016 Out of bounds for computation -> 1.45083[0.001,0.5]
Interaction: 9965/20016 Out of bounds for computation -> 1.29249[0.001,0.5]
9966
Interaction: 9967/20016 Out of bounds for computation -> 2.41079[0.001,0.5]
Interaction: 9968/20016 Out of bounds for computation -> 0.57649[0.001,0.5]
Interaction: 9969/20016 Out of bounds for computation -> 1.50333[0.001,0.5]
Interaction: 9970/20016 Out of bounds for computation -> 1.3452[0.001,0.5]
9971
9972
Interaction: 9973/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9974/20016 Out of bounds for computation -> 1.19121[0.001,0.5]
9975
Interaction: 9976/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 9977/20016 Out of bounds for computation -> 0.56456[0.001,0.5]
Interaction: 9978/20016 Out of bounds for computation -> 1.05552[0.001,0.5]
9979
Interaction: 9980/20016 Out of bounds for computation -> 0.66729[0.001,0.5]
Interaction: 9981/20016 Out of bounds for computation -> 0.58262[0.001,0.5]
Interaction: 9982/20016 Out of bounds for computation -> 0.724521[0.001,0.5]
Interaction: 9983/20016 Out of bounds for computation -> 1.40185[0.001,0.5]
Interaction: 9984/20016 Out of bounds for computation -> 2.13412[0.001,0.5]
Interaction: 9985/20016 Out of bounds for computation -> 0.65742[0.001,0.5]
Interaction: 9986/20016 Out of bounds for computation -> 0.836425[0.001,0.5]
Interaction: 9987/20016 Out of bounds for computation -> 2.82854[0.001,0.5]
9988
9989
9990
9991
9992
Interaction: 9993/20016 Out of bounds for computation -> 0.587007[0.001,0.5]
9994
Interaction: 9995/20016 Out of bounds for computation -> 0.858467[0.001,0.5]
9996
9997
9998
9999
10000
10001
Interaction: 10002/20016 Out of bounds for computation -> 1.41438[0.001,0.5]
Interaction: 10003/20016 Out of bounds for computation -> nan[0.001,0.5]
10004
10005
10006
Interaction: 10007/20016 Out of bounds for computation -> 1.43511[0.001,0.5]
Interaction: 10008/20016 Out of bounds for computation -> 0.739905[0.001,0.5]
10009
10010
10011
Interaction: 10012/20016 Out of bounds for computation -> 0.684716[0.001,0.5]
10013
Interaction: 10014/20016 Out of bounds for computation -> 2.04685[0.001,0.5]
10015
Interaction: 10016/20016 Out of bounds for computation -> 1.70188[0.001,0.5]
Interaction: 10017/20016 Out of bounds for computation -> 1.0412[0.001,0.5]
Interaction: 10018/20016 Out of bounds for computation -> 1.43418[0.001,0.5]
Interaction: 10019/20016 Out of bounds for computation -> 2.48521[0.001,0.5]
10020
10021
Interaction: 10022/20016 Out of bounds for computation -> 1.2365[0.001,0.5]
10023
10024
Interaction: 10025/20016 Out of bounds for computation -> 1.42418[0.001,0.5]
10026
Interaction: 10027/20016 Out of bounds for computation -> 0.699993[0.001,0.5]
Interaction: 10028/20016 Out of bounds for computation -> 1.41284[0.001,0.5]
10029
10030
Interaction: 10031/20016 Out of bounds for computation -> 1.29264[0.001,0.5]
Interaction: 10032/20016 Out of bounds for computation -> 2.47936[0.001,0.5]
Interaction: 10033/20016 Out of bounds for computation -> 0.780174[0.001,0.5]
Interaction: 10034/20016 Out of bounds for computation -> 2.91631[0.001,0.5]
Interaction: 10035/20016 Out of bounds for computation -> 0.577283[0.001,0.5]
10036
10037
10038
10039
Interaction: 10040/20016 Out of bounds for computation -> 1.08634[0.001,0.5]
10041
Interaction: 10042/20016 Out of bounds for computation -> 1.46371[0.001,0.5]
10043
10044
10045
Interaction: 10046/20016 Out of bounds for computation -> 2.16265[0.001,0.5]
10047
10048
Interaction: 10049/20016 Out of bounds for computation -> 0.686705[0.001,0.5]
10050
10051
10052
Interaction: 10053/20016 Out of bounds for computation -> 1.30251[0.001,0.5]
Interaction: 10054/20016 Out of bounds for computation -> 0.524632[0.001,0.5]
10055
Interaction: 10056/20016 Out of bounds for computation -> 2.39976[0.001,0.5]
10057
Interaction: 10058/20016 Out of bounds for computation -> 1.15119[0.001,0.5]
Interaction: 10059/20016 Out of bounds for computation -> 0.886951[0.001,0.5]
Interaction: 10060/20016 Out of bounds for computation -> 1.81308[0.001,0.5]
Interaction: 10061/20016 Out of bounds for computation -> 1.12461[0.001,0.5]
10062
10063
Interaction: 10064/20016 Out of bounds for computation -> 1.8473[0.001,0.5]
10065
10066
Interaction: 10067/20016 Out of bounds for computation -> 0.558884[0.001,0.5]
10068
10069
Interaction: 10070/20016 Out of bounds for computation -> 0.5449[0.001,0.5]
10071
Interaction: 10072/20016 Out of bounds for computation -> 0.720622[0.001,0.5]
10073
10074
Interaction: 10075/20016 Out of bounds for computation -> 1.50788[0.001,0.5]
Interaction: 10076/20016 Out of bounds for computation -> 0.930898[0.001,0.5]
10077
10078
Interaction: 10079/20016 Out of bounds for computation -> 1.88888[0.001,0.5]
10080
10081
Interaction: 10082/20016 Out of bounds for computation -> nan[0.001,0.5]
10083
10084
Interaction: 10085/20016 Out of bounds for computation -> nan[0.001,0.5]
10086
Interaction: 10087/20016 Out of bounds for computation -> 1.9608[0.001,0.5]
10088
10089
10090
10091
Interaction: 10092/20016 Out of bounds for computation -> nan[0.001,0.5]
10093
10094
Interaction: 10095/20016 Out of bounds for computation -> 0.647533[0.001,0.5]
10096
10097
10098
Interaction: 10099/20016 Out of bounds for computation -> 0.532565[0.001,0.5]
10100
10101
10102
Interaction: 10103/20016 Out of bounds for computation -> 0.54216[0.001,0.5]
10104
10105
10106
Interaction: 10107/20016 Out of bounds for computation -> 2.14044[0.001,0.5]
Interaction: 10108/20016 Out of bounds for computation -> 0.562531[0.001,0.5]
10109
10110
10111
10112
Interaction: 10113/20016 Out of bounds for computation -> 1.85179[0.001,0.5]
Interaction: 10114/20016 Out of bounds for computation -> 0.984205[0.001,0.5]
10115
10116
Interaction: 10117/20016 Out of bounds for computation -> 0.811852[0.001,0.5]
10118
10119
10120
10121
Interaction: 10122/20016 Out of bounds for computation -> 1.47427[0.001,0.5]
Interaction: 10123/20016 Out of bounds for computation -> nan[0.001,0.5]
10124
10125
Interaction: 10126/20016 Out of bounds for computation -> 1.09642[0.001,0.5]
10127
10128
Interaction: 10129/20016 Out of bounds for computation -> 1.85312[0.001,0.5]
10130
Interaction: 10131/20016 Out of bounds for computation -> 0.648519[0.001,0.5]
10132
10133
10134
10135
Interaction: 10136/20016 Out of bounds for computation -> nan[0.001,0.5]
10137
10138
Interaction: 10139/20016 Out of bounds for computation -> 2.04475[0.001,0.5]
10140
10141
10142
Interaction: 10143/20016 Out of bounds for computation -> 1.93309[0.001,0.5]
Interaction: 10144/20016 Out of bounds for computation -> 0.919928[0.001,0.5]
10145
Interaction: 10146/20016 Out of bounds for computation -> 0.569459[0.001,0.5]
Interaction: 10147/20016 Out of bounds for computation -> 0.874684[0.001,0.5]
Interaction: 10148/20016 Out of bounds for computation -> 0.607111[0.001,0.5]
Interaction: 10149/20016 Out of bounds for computation -> 1.31656[0.001,0.5]
Interaction: 10150/20016 Out of bounds for computation -> 2.15058[0.001,0.5]
10151
Interaction: 10152/20016 Out of bounds for computation -> 0.527949[0.001,0.5]
Interaction: 10153/20016 Out of bounds for computation -> 0.718649[0.001,0.5]
10154
Interaction: 10155/20016 Out of bounds for computation -> 0.822423[0.001,0.5]
Interaction: 10156/20016 Out of bounds for computation -> 0.74664[0.001,0.5]
Interaction: 10157/20016 Out of bounds for computation -> 0.715[0.001,0.5]
Interaction: 10158/20016 Out of bounds for computation -> 0.663085[0.001,0.5]
Interaction: 10159/20016 Out of bounds for computation -> 1.75225[0.001,0.5]
10160
Interaction: 10161/20016 Out of bounds for computation -> 0.523681[0.001,0.5]
Interaction: 10162/20016 Out of bounds for computation -> 0.693585[0.001,0.5]
10163
10164
Interaction: 10165/20016 Out of bounds for computation -> 2.3952[0.001,0.5]
Interaction: 10166/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 10167/20016 Out of bounds for computation -> 1.98396[0.001,0.5]
10168
10169
10170
Interaction: 10171/20016 Out of bounds for computation -> nan[0.001,0.5]
10172
10173
10174
Interaction: 10175/20016 Out of bounds for computation -> 0.931971[0.001,0.5]
10176
Interaction: 10177/20016 Out of bounds for computation -> 1.99077[0.001,0.5]
10178
10179
10180
10181
10182
10183
10184
10185
Interaction: 10186/20016 Out of bounds for computation -> 0.6267[0.001,0.5]
10187
10188
Interaction: 10189/20016 Out of bounds for computation -> 1.91318[0.001,0.5]
Interaction: 10190/20016 Out of bounds for computation -> 1.48802[0.001,0.5]
Interaction: 10191/20016 Out of bounds for computation -> 2.15817[0.001,0.5]
10192
Interaction: 10193/20016 Out of bounds for computation -> 2.65874[0.001,0.5]
Interaction: 10194/20016 Out of bounds for computation -> 0.710457[0.001,0.5]
Interaction: 10195/20016 Out of bounds for computation -> 0.675037[0.001,0.5]
Interaction: 10196/20016 Out of bounds for computation -> 0.558822[0.001,0.5]
Interaction: 10197/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 10198/20016 Out of bounds for computation -> 1.47443[0.001,0.5]
Interaction: 10199/20016 Out of bounds for computation -> 1.93953[0.001,0.5]
Interaction: 10200/20016 Out of bounds for computation -> 0.715764[0.001,0.5]
10201
10202
Interaction: 10203/20016 Out of bounds for computation -> 0.980035[0.001,0.5]
Interaction: 10204/20016 Out of bounds for computation -> 0.914579[0.001,0.5]
Interaction: 10205/20016 Out of bounds for computation -> 1.23516[0.001,0.5]
10206
Interaction: 10207/20016 Out of bounds for computation -> 2.78017[0.001,0.5]
10208
Interaction: 10209/20016 Out of bounds for computation -> 1.03905[0.001,0.5]
10210
10211
Interaction: 10212/20016 Out of bounds for computation -> 0.591994[0.001,0.5]
10213
Interaction: 10214/20016 Out of bounds for computation -> 1.42069[0.001,0.5]
10215
Interaction: 10216/20016 Out of bounds for computation -> 2.02465[0.001,0.5]
Interaction: 10217/20016 Out of bounds for computation -> 0.713887[0.001,0.5]
Interaction: 10218/20016 Out of bounds for computation -> 0.642398[0.001,0.5]
10219
10220
Interaction: 10221/20016 Out of bounds for computation -> 0.577728[0.001,0.5]
10222
10223
Interaction: 10224/20016 Out of bounds for computation -> nan[0.001,0.5]
10225
Interaction: 10226/20016 Out of bounds for computation -> 0.595182[0.001,0.5]
10227
Interaction: 10228/20016 Out of bounds for computation -> 1.4694[0.001,0.5]
Interaction: 10229/20016 Out of bounds for computation -> 2.74815[0.001,0.5]
Interaction: 10230/20016 Out of bounds for computation -> 0.566422[0.001,0.5]
Interaction: 10231/20016 Out of bounds for computation -> 0.921254[0.001,0.5]
Interaction: 10232/20016 Out of bounds for computation -> nan[0.001,0.5]
10233
Interaction: 10234/20016 Out of bounds for computation -> 0.985348[0.001,0.5]
Interaction: 10235/20016 Out of bounds for computation -> 1.4225[0.001,0.5]
Interaction: 10236/20016 Out of bounds for computation -> 1.24297[0.001,0.5]
Interaction: 10237/20016 Out of bounds for computation -> 1.23355[0.001,0.5]
Interaction: 10238/20016 Out of bounds for computation -> 1.0523[0.001,0.5]
Interaction: 10239/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 10240/20016 Out of bounds for computation -> nan[0.001,0.5]
10241
10242
Interaction: 10243/20016 Out of bounds for computation -> 0.599336[0.001,0.5]
Interaction: 10244/20016 Out of bounds for computation -> 0.69741[0.001,0.5]
Interaction: 10245/20016 Out of bounds for computation -> 2.24364[0.001,0.5]
10246
Interaction: 10247/20016 Out of bounds for computation -> 0.86551[0.001,0.5]
Interaction: 10248/20016 Out of bounds for computation -> 2.55977[0.001,0.5]
Interaction: 10249/20016 Out of bounds for computation -> 1.59215[0.001,0.5]
Interaction: 10250/20016 Out of bounds for computation -> nan[0.001,0.5]
10251
10252
10253
10254
10255
10256
10257
10258
10259
Interaction: 10260/20016 Out of bounds for computation -> 1.4158[0.001,0.5]
Interaction: 10261/20016 Out of bounds for computation -> 0.892527[0.001,0.5]
10262
10263
Interaction: 10264/20016 Out of bounds for computation -> 1.29835[0.001,0.5]
10265
Interaction: 10266/20016 Out of bounds for computation -> 0.676456[0.001,0.5]
10267
10268
Interaction: 10269/20016 Out of bounds for computation -> 0.636111[0.001,0.5]
Interaction: 10270/20016 Out of bounds for computation -> 0.548252[0.001,0.5]
Interaction: 10271/20016 Out of bounds for computation -> nan[0.001,0.5]
10272
10273
10274
10275
Interaction: 10276/20016 Out of bounds for computation -> 0.697966[0.001,0.5]
Interaction: 10277/20016 Out of bounds for computation -> 2.52655[0.001,0.5]
10278
10279
Interaction: 10280/20016 Out of bounds for computation -> 1.26041[0.001,0.5]
10281
10282
10283
10284
Interaction: 10285/20016 Out of bounds for computation -> 0.83563[0.001,0.5]
Interaction: 10286/20016 Out of bounds for computation -> 0.594263[0.001,0.5]
Interaction: 10287/20016 Out of bounds for computation -> 1.46798[0.001,0.5]
Interaction: 10288/20016 Out of bounds for computation -> 1.41531[0.001,0.5]
Interaction: 10289/20016 Out of bounds for computation -> 0.74809[0.001,0.5]
10290
Interaction: 10291/20016 Out of bounds for computation -> nan[0.001,0.5]
10292
10293
10294
10295
Interaction: 10296/20016 Out of bounds for computation -> 0.680713[0.001,0.5]
Interaction: 10297/20016 Out of bounds for computation -> 0.739413[0.001,0.5]
10298
10299
Interaction: 10300/20016 Out of bounds for computation -> 2.46326[0.001,0.5]
Interaction: 10301/20016 Out of bounds for computation -> 0.726723[0.001,0.5]
10302
Interaction: 10303/20016 Out of bounds for computation -> 0.799671[0.001,0.5]
10304
10305
10306
Interaction: 10307/20016 Out of bounds for computation -> 0.808398[0.001,0.5]
10308
10309
Interaction: 10310/20016 Out of bounds for computation -> nan[0.001,0.5]
10311
Interaction: 10312/20016 Out of bounds for computation -> 1.98948[0.001,0.5]
10313
10314
Interaction: 10315/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 10316/20016 Out of bounds for computation -> 0.597615[0.001,0.5]
10317
Interaction: 10318/20016 Out of bounds for computation -> 0.65067[0.001,0.5]
10319
Interaction: 10320/20016 Out of bounds for computation -> 1.19402[0.001,0.5]
Interaction: 10321/20016 Out of bounds for computation -> 0.528104[0.001,0.5]
10322
Interaction: 10323/20016 Out of bounds for computation -> 0.718122[0.001,0.5]
10324
Interaction: 10325/20016 Out of bounds for computation -> 0.90909[0.001,0.5]
Interaction: 10326/20016 Out of bounds for computation -> nan[0.001,0.5]
10327
10328
10329
10330
10331
Interaction: 10332/20016 Out of bounds for computation -> 1.37684[0.001,0.5]
Interaction: 10333/20016 Out of bounds for computation -> 1.39396[0.001,0.5]
10334
10335
10336
Interaction: 10337/20016 Out of bounds for computation -> 0.522694[0.001,0.5]
Interaction: 10338/20016 Out of bounds for computation -> 1.43505[0.001,0.5]
10339
10340
Interaction: 10341/20016 Out of bounds for computation -> 0.614054[0.001,0.5]
10342
Interaction: 10343/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 10344/20016 Out of bounds for computation -> 2.02756[0.001,0.5]
10345
Interaction: 10346/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 10347/20016 Out of bounds for computation -> 0.740813[0.001,0.5]
10348
Interaction: 10349/20016 Out of bounds for computation -> 1.79818[0.001,0.5]
10350
10351
10352
Interaction: 10353/20016 Out of bounds for computation -> 1.69675[0.001,0.5]
Interaction: 10354/20016 Out of bounds for computation -> 0.987011[0.001,0.5]
10355
Interaction: 10356/20016 Out of bounds for computation -> nan[0.001,0.5]
10357
Interaction: 10358/20016 Out of bounds for computation -> 0.840709[0.001,0.5]
10359
Interaction: 10360/20016 Out of bounds for computation -> 0.612392[0.001,0.5]
Interaction: 10361/20016 Out of bounds for computation -> 1.05271[0.001,0.5]
10362
Interaction: 10363/20016 Out of bounds for computation -> 2.33719[0.001,0.5]
Interaction: 10364/20016 Out of bounds for computation -> 0.556608[0.001,0.5]
10365
10366
Interaction: 10367/20016 Out of bounds for computation -> 1.60056[0.001,0.5]
Interaction: 10368/20016 Out of bounds for computation -> 0.816586[0.001,0.5]
10369
10370
Interaction: 10371/20016 Out of bounds for computation -> 1.22798[0.001,0.5]
Interaction: 10372/20016 Out of bounds for computation -> 0.650419[0.001,0.5]
Interaction: 10373/20016 Out of bounds for computation -> 1.8335[0.001,0.5]
Interaction: 10374/20016 Out of bounds for computation -> 1.36339[0.001,0.5]
10375
Interaction: 10376/20016 Out of bounds for computation -> 1.45674[0.001,0.5]
10377
10378
10379
10380
Interaction: 10381/20016 Out of bounds for computation -> 0.565754[0.001,0.5]
Interaction: 10382/20016 Out of bounds for computation -> 1.51525[0.001,0.5]
10383
10384
Interaction: 10385/20016 Out of bounds for computation -> 1.6044[0.001,0.5]
Interaction: 10386/20016 Out of bounds for computation -> 0.532201[0.001,0.5]
Interaction: 10387/20016 Out of bounds for computation -> 0.779076[0.001,0.5]
10388
10389
10390
10391
10392
10393
10394
Interaction: 10395/20016 Out of bounds for computation -> 2.14018[0.001,0.5]
10396
Interaction: 10397/20016 Out of bounds for computation -> 1.91238[0.001,0.5]
Interaction: 10398/20016 Out of bounds for computation -> 0.804501[0.001,0.5]
10399
Interaction: 10400/20016 Out of bounds for computation -> 0.633053[0.001,0.5]
Interaction: 10401/20016 Out of bounds for computation -> 0.678857[0.001,0.5]
10402
Interaction: 10403/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 10404/20016 Out of bounds for computation -> 0.950055[0.001,0.5]
Interaction: 10405/20016 Out of bounds for computation -> 1.4762[0.001,0.5]
10406
10407
Interaction: 10408/20016 Out of bounds for computation -> 1.09203[0.001,0.5]
10409
Interaction: 10410/20016 Out of bounds for computation -> 2.52027[0.001,0.5]
Interaction: 10411/20016 Out of bounds for computation -> 2.25109[0.001,0.5]
10412
Interaction: 10413/20016 Out of bounds for computation -> 1.52328[0.001,0.5]
Interaction: 10414/20016 Out of bounds for computation -> 2.61825[0.001,0.5]
Interaction: 10415/20016 Out of bounds for computation -> 0.869814[0.001,0.5]
10416
10417
Interaction: 10418/20016 Out of bounds for computation -> 1.41579[0.001,0.5]
10419
10420
10421
10422
Interaction: 10423/20016 Out of bounds for computation -> 0.908687[0.001,0.5]
10424
10425
Interaction: 10426/20016 Out of bounds for computation -> 0.783457[0.001,0.5]
10427
10428
Interaction: 10429/20016 Out of bounds for computation -> 0.502553[0.001,0.5]
10430
Interaction: 10431/20016 Out of bounds for computation -> 2.84283[0.001,0.5]
10432
10433
10434
10435
Interaction: 10436/20016 Out of bounds for computation -> 1.27863[0.001,0.5]
Interaction: 10437/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 10438/20016 Out of bounds for computation -> 0.662146[0.001,0.5]
10439
10440
Interaction: 10441/20016 Out of bounds for computation -> 2.00432[0.001,0.5]
10442
10443
10444
10445
Interaction: 10446/20016 Out of bounds for computation -> 1.39374[0.001,0.5]
10447
10448
10449
10450
10451
10452
10453
10454
Interaction: 10455/20016 Out of bounds for computation -> 0.716815[0.001,0.5]
10456
Interaction: 10457/20016 Out of bounds for computation -> nan[0.001,0.5]
10458
10459
10460
Interaction: 10461/20016 Out of bounds for computation -> 1.4044[0.001,0.5]
10462
Interaction: 10463/20016 Out of bounds for computation -> 0.825899[0.001,0.5]
10464
10465
Interaction: 10466/20016 Out of bounds for computation -> 2.19406[0.001,0.5]
Interaction: 10467/20016 Out of bounds for computation -> 0.583838[0.001,0.5]
10468
Interaction: 10469/20016 Out of bounds for computation -> 1.52153[0.001,0.5]
Interaction: 10470/20016 Out of bounds for computation -> 0.962437[0.001,0.5]
10471
10472
Interaction: 10473/20016 Out of bounds for computation -> 0.857515[0.001,0.5]
Interaction: 10474/20016 Out of bounds for computation -> 1.94019[0.001,0.5]
Interaction: 10475/20016 Out of bounds for computation -> 0.759472[0.001,0.5]
10476
Interaction: 10477/20016 Out of bounds for computation -> 1.14165[0.001,0.5]
10478
10479
10480
10481
10482
10483
Interaction: 10484/20016 Out of bounds for computation -> nan[0.001,0.5]
10485
10486
10487
10488
10489
Interaction: 10490/20016 Out of bounds for computation -> nan[0.001,0.5]
10491
Interaction: 10492/20016 Out of bounds for computation -> 1.52049[0.001,0.5]
10493
Interaction: 10494/20016 Out of bounds for computation -> 0.73898[0.001,0.5]
10495
Interaction: 10496/20016 Out of bounds for computation -> 1.27919[0.001,0.5]
10497
Interaction: 10498/20016 Out of bounds for computation -> 0.520859[0.001,0.5]
10499
10500
Interaction: 10501/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 10502/20016 Out of bounds for computation -> 0.625127[0.001,0.5]
10503
Interaction: 10504/20016 Out of bounds for computation -> 1.7665[0.001,0.5]
Interaction: 10505/20016 Out of bounds for computation -> 1.33464[0.001,0.5]
10506
Interaction: 10507/20016 Out of bounds for computation -> 2.90153[0.001,0.5]
Interaction: 10508/20016 Out of bounds for computation -> 1.18583[0.001,0.5]
10509
10510
10511
Interaction: 10512/20016 Out of bounds for computation -> nan[0.001,0.5]
10513
Interaction: 10514/20016 Out of bounds for computation -> 0.940081[0.001,0.5]
Interaction: 10515/20016 Out of bounds for computation -> 0.540416[0.001,0.5]
10516
Interaction: 10517/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 10518/20016 Out of bounds for computation -> 1.08247[0.001,0.5]
10519
Interaction: 10520/20016 Out of bounds for computation -> 1.02101[0.001,0.5]
10521
Interaction: 10522/20016 Out of bounds for computation -> 2.62976[0.001,0.5]
10523
10524
10525
10526
Interaction: 10527/20016 Out of bounds for computation -> 2.05916[0.001,0.5]
Interaction: 10528/20016 Out of bounds for computation -> 2.41254[0.001,0.5]
Interaction: 10529/20016 Out of bounds for computation -> 2.02821[0.001,0.5]
10530
Interaction: 10531/20016 Out of bounds for computation -> 1.65836[0.001,0.5]
Interaction: 10532/20016 Out of bounds for computation -> 0.572175[0.001,0.5]
Interaction: 10533/20016 Out of bounds for computation -> 1.31629[0.001,0.5]
Interaction: 10534/20016 Out of bounds for computation -> 0.618065[0.001,0.5]
Interaction: 10535/20016 Out of bounds for computation -> 1.52526[0.001,0.5]
Interaction: 10536/20016 Out of bounds for computation -> 0.554925[0.001,0.5]
Interaction: 10537/20016 Out of bounds for computation -> 0.545147[0.001,0.5]
Interaction: 10538/20016 Out of bounds for computation -> nan[0.001,0.5]
10539
Interaction: 10540/20016 Out of bounds for computation -> 0.72423[0.001,0.5]
10541
10542
Interaction: 10543/20016 Out of bounds for computation -> 1.45638[0.001,0.5]
10544
10545
10546
Interaction: 10547/20016 Out of bounds for computation -> 0.924734[0.001,0.5]
10548
Interaction: 10549/20016 Out of bounds for computation -> 1.16148[0.001,0.5]
10550
Interaction: 10551/20016 Out of bounds for computation -> 1.69058[0.001,0.5]
Interaction: 10552/20016 Out of bounds for computation -> 0.786494[0.001,0.5]
Interaction: 10553/20016 Out of bounds for computation -> 1.99006[0.001,0.5]
Interaction: 10554/20016 Out of bounds for computation -> 0.887924[0.001,0.5]
10555
10556
10557
Interaction: 10558/20016 Out of bounds for computation -> 0.842875[0.001,0.5]
10559
10560
Interaction: 10561/20016 Out of bounds for computation -> 1.35864[0.001,0.5]
Interaction: 10562/20016 Out of bounds for computation -> 0.556581[0.001,0.5]
10563
Interaction: 10564/20016 Out of bounds for computation -> 0.573738[0.001,0.5]
10565
10566
10567
Interaction: 10568/20016 Out of bounds for computation -> 0.560068[0.001,0.5]
10569
Interaction: 10570/20016 Out of bounds for computation -> 2.05268[0.001,0.5]
10571
Interaction: 10572/20016 Out of bounds for computation -> 0.561251[0.001,0.5]
Interaction: 10573/20016 Out of bounds for computation -> 0.825394[0.001,0.5]
10574
10575
10576
10577
Interaction: 10578/20016 Out of bounds for computation -> 0.730674[0.001,0.5]
10579
Interaction: 10580/20016 Out of bounds for computation -> 1.4127[0.001,0.5]
10581
Interaction: 10582/20016 Out of bounds for computation -> 0.513301[0.001,0.5]
10583
Interaction: 10584/20016 Out of bounds for computation -> 2.26794[0.001,0.5]
10585
Interaction: 10586/20016 Out of bounds for computation -> 1.98368[0.001,0.5]
10587
10588
Interaction: 10589/20016 Out of bounds for computation -> nan[0.001,0.5]
10590
Interaction: 10591/20016 Out of bounds for computation -> 0.585681[0.001,0.5]
10592
10593
Interaction: 10594/20016 Out of bounds for computation -> 1.41572[0.001,0.5]
Interaction: 10595/20016 Out of bounds for computation -> 0.599918[0.001,0.5]
10596
Interaction: 10597/20016 Out of bounds for computation -> 2.17459[0.001,0.5]
Interaction: 10598/20016 Out of bounds for computation -> 1.43998[0.001,0.5]
Interaction: 10599/20016 Out of bounds for computation -> 1.34055[0.001,0.5]
Interaction: 10600/20016 Out of bounds for computation -> 0.866814[0.001,0.5]
10601
10602
10603
10604
Interaction: 10605/20016 Out of bounds for computation -> 2.37563[0.001,0.5]
Interaction: 10606/20016 Out of bounds for computation -> 1.03253[0.001,0.5]
Interaction: 10607/20016 Out of bounds for computation -> 0.594462[0.001,0.5]
Interaction: 10608/20016 Out of bounds for computation -> 0.501794[0.001,0.5]
Interaction: 10609/20016 Out of bounds for computation -> 0.573498[0.001,0.5]
10610
Interaction: 10611/20016 Out of bounds for computation -> 1.60797[0.001,0.5]
10612
Interaction: 10613/20016 Out of bounds for computation -> 1.57849[0.001,0.5]
Interaction: 10614/20016 Out of bounds for computation -> nan[0.001,0.5]
10615
10616
10617
Interaction: 10618/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 10619/20016 Out of bounds for computation -> 2.28422[0.001,0.5]
10620
Interaction: 10621/20016 Out of bounds for computation -> 1.12205[0.001,0.5]
Interaction: 10622/20016 Out of bounds for computation -> 2.23373[0.001,0.5]
10623
10624
10625
Interaction: 10626/20016 Out of bounds for computation -> 2.866[0.001,0.5]
10627
Interaction: 10628/20016 Out of bounds for computation -> 0.514025[0.001,0.5]
10629
10630
10631
10632
Interaction: 10633/20016 Out of bounds for computation -> 0.779155[0.001,0.5]
Interaction: 10634/20016 Out of bounds for computation -> 0.757033[0.001,0.5]
10635
Interaction: 10636/20016 Out of bounds for computation -> 0.551498[0.001,0.5]
10637
Interaction: 10638/20016 Out of bounds for computation -> 0.715213[0.001,0.5]
10639
Interaction: 10640/20016 Out of bounds for computation -> 2.30742[0.001,0.5]
Interaction: 10641/20016 Out of bounds for computation -> 2.49948[0.001,0.5]
Interaction: 10642/20016 Out of bounds for computation -> 0.619881[0.001,0.5]
Interaction: 10643/20016 Out of bounds for computation -> 1.53686[0.001,0.5]
Interaction: 10644/20016 Out of bounds for computation -> 0.571699[0.001,0.5]
10645
Interaction: 10646/20016 Out of bounds for computation -> 1.62152[0.001,0.5]
10647
Interaction: 10648/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 10649/20016 Out of bounds for computation -> 1.38744[0.001,0.5]
Interaction: 10650/20016 Out of bounds for computation -> 2.16213[0.001,0.5]
10651
10652
10653
10654
10655
Interaction: 10656/20016 Out of bounds for computation -> 2.32273[0.001,0.5]
10657
Interaction: 10658/20016 Out of bounds for computation -> 0.66016[0.001,0.5]
Interaction: 10659/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 10660/20016 Out of bounds for computation -> 0.681439[0.001,0.5]
10661
10662
10663
Interaction: 10664/20016 Out of bounds for computation -> 1.61393[0.001,0.5]
Interaction: 10665/20016 Out of bounds for computation -> 2.33244[0.001,0.5]
Interaction: 10666/20016 Out of bounds for computation -> 1.96365[0.001,0.5]
10667
10668
10669
10670
10671
Interaction: 10672/20016 Out of bounds for computation -> 1.64963[0.001,0.5]
Interaction: 10673/20016 Out of bounds for computation -> 2.24868[0.001,0.5]
10674
10675
Interaction: 10676/20016 Out of bounds for computation -> 0.790725[0.001,0.5]
10677
10678
Interaction: 10679/20016 Out of bounds for computation -> 1.26851[0.001,0.5]
10680
10681
10682
10683
10684
10685
10686
10687
Interaction: 10688/20016 Out of bounds for computation -> 1.47254[0.001,0.5]
10689
10690
Interaction: 10691/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 10692/20016 Out of bounds for computation -> 0.881658[0.001,0.5]
Interaction: 10693/20016 Out of bounds for computation -> 0.512663[0.001,0.5]
Interaction: 10694/20016 Out of bounds for computation -> 0.906041[0.001,0.5]
Interaction: 10695/20016 Out of bounds for computation -> 1.38737[0.001,0.5]
10696
Interaction: 10697/20016 Out of bounds for computation -> 0.826472[0.001,0.5]
10698
10699
10700
Interaction: 10701/20016 Out of bounds for computation -> 0.700007[0.001,0.5]
10702
10703
Interaction: 10704/20016 Out of bounds for computation -> 1.99309[0.001,0.5]
10705
Interaction: 10706/20016 Out of bounds for computation -> nan[0.001,0.5]
10707
Interaction: 10708/20016 Out of bounds for computation -> 2.45795[0.001,0.5]
10709
Interaction: 10710/20016 Out of bounds for computation -> 0.616595[0.001,0.5]
10711
Interaction: 10712/20016 Out of bounds for computation -> 0.538775[0.001,0.5]
10713
Interaction: 10714/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 10715/20016 Out of bounds for computation -> 1.78835[0.001,0.5]
Interaction: 10716/20016 Out of bounds for computation -> 0.894477[0.001,0.5]
Interaction: 10717/20016 Out of bounds for computation -> 0.68494[0.001,0.5]
10718
Interaction: 10719/20016 Out of bounds for computation -> 0.677344[0.001,0.5]
10720
Interaction: 10721/20016 Out of bounds for computation -> 0.754053[0.001,0.5]
Interaction: 10722/20016 Out of bounds for computation -> 0.612161[0.001,0.5]
10723
Interaction: 10724/20016 Out of bounds for computation -> 1.4587[0.001,0.5]
Interaction: 10725/20016 Out of bounds for computation -> 0.556097[0.001,0.5]
Interaction: 10726/20016 Out of bounds for computation -> 2.42942[0.001,0.5]
Interaction: 10727/20016 Out of bounds for computation -> 1.44941[0.001,0.5]
Interaction: 10728/20016 Out of bounds for computation -> 0.92316[0.001,0.5]
Interaction: 10729/20016 Out of bounds for computation -> 2.90401[0.001,0.5]
10730
Interaction: 10731/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 10732/20016 Out of bounds for computation -> 1.14781[0.001,0.5]
Interaction: 10733/20016 Out of bounds for computation -> 0.982389[0.001,0.5]
10734
Interaction: 10735/20016 Out of bounds for computation -> 2.6824[0.001,0.5]
Interaction: 10736/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 10737/20016 Out of bounds for computation -> 1.99851[0.001,0.5]
Interaction: 10738/20016 Out of bounds for computation -> 1.45186[0.001,0.5]
10739
Interaction: 10740/20016 Out of bounds for computation -> 1.42151[0.001,0.5]
Interaction: 10741/20016 Out of bounds for computation -> 0.543747[0.001,0.5]
10742
10743
Interaction: 10744/20016 Out of bounds for computation -> 0.617212[0.001,0.5]
10745
Interaction: 10746/20016 Out of bounds for computation -> 1.10228[0.001,0.5]
10747
10748
Interaction: 10749/20016 Out of bounds for computation -> 0.970473[0.001,0.5]
10750
10751
Interaction: 10752/20016 Out of bounds for computation -> 0.648478[0.001,0.5]
10753
10754
Interaction: 10755/20016 Out of bounds for computation -> 1.59719[0.001,0.5]
Interaction: 10756/20016 Out of bounds for computation -> 1.99986[0.001,0.5]
Interaction: 10757/20016 Out of bounds for computation -> 2.36704[0.001,0.5]
Interaction: 10758/20016 Out of bounds for computation -> 0.706531[0.001,0.5]
10759
Interaction: 10760/20016 Out of bounds for computation -> 1.25151[0.001,0.5]
Interaction: 10761/20016 Out of bounds for computation -> nan[0.001,0.5]
10762
10763
Interaction: 10764/20016 Out of bounds for computation -> 0.56194[0.001,0.5]
10765
10766
10767
Interaction: 10768/20016 Out of bounds for computation -> 0.628475[0.001,0.5]
10769
10770
Interaction: 10771/20016 Out of bounds for computation -> nan[0.001,0.5]
10772
10773
10774
Interaction: 10775/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 10776/20016 Out of bounds for computation -> 0.76323[0.001,0.5]
Interaction: 10777/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 10778/20016 Out of bounds for computation -> 0.911646[0.001,0.5]
10779
10780
10781
Interaction: 10782/20016 Out of bounds for computation -> 1.71058[0.001,0.5]
Interaction: 10783/20016 Out of bounds for computation -> 0.627068[0.001,0.5]
Interaction: 10784/20016 Out of bounds for computation -> 1.01419[0.001,0.5]
10785
10786
10787
10788
10789
10790
10791
Interaction: 10792/20016 Out of bounds for computation -> 1.65755[0.001,0.5]
Interaction: 10793/20016 Out of bounds for computation -> 2.76758[0.001,0.5]
10794
10795
Interaction: 10796/20016 Out of bounds for computation -> 1.47366[0.001,0.5]
10797
Interaction: 10798/20016 Out of bounds for computation -> 0.771374[0.001,0.5]
10799
Interaction: 10800/20016 Out of bounds for computation -> 1.66187[0.001,0.5]
Interaction: 10801/20016 Out of bounds for computation -> 0.536906[0.001,0.5]
Interaction: 10802/20016 Out of bounds for computation -> 0.583679[0.001,0.5]
10803
Interaction: 10804/20016 Out of bounds for computation -> 0.967335[0.001,0.5]
Interaction: 10805/20016 Out of bounds for computation -> 0.611984[0.001,0.5]
10806
10807
Interaction: 10808/20016 Out of bounds for computation -> 0.502988[0.001,0.5]
10809
10810
10811
10812
10813
10814
Interaction: 10815/20016 Out of bounds for computation -> 2.54674[0.001,0.5]
10816
Interaction: 10817/20016 Out of bounds for computation -> 2.4491[0.001,0.5]
10818
Interaction: 10819/20016 Out of bounds for computation -> 1.79215[0.001,0.5]
10820
10821
Interaction: 10822/20016 Out of bounds for computation -> 1.13602[0.001,0.5]
Interaction: 10823/20016 Out of bounds for computation -> 0.967196[0.001,0.5]
10824
Interaction: 10825/20016 Out of bounds for computation -> 2.35627[0.001,0.5]
Interaction: 10826/20016 Out of bounds for computation -> 2.59354[0.001,0.5]
10827
10828
10829
10830
Interaction: 10831/20016 Out of bounds for computation -> 2.36046[0.001,0.5]
Interaction: 10832/20016 Out of bounds for computation -> 0.614709[0.001,0.5]
10833
10834
10835
Interaction: 10836/20016 Out of bounds for computation -> 2.28842[0.001,0.5]
10837
10838
Interaction: 10839/20016 Out of bounds for computation -> 2.83913[0.001,0.5]
Interaction: 10840/20016 Out of bounds for computation -> 0.606601[0.001,0.5]
10841
Interaction: 10842/20016 Out of bounds for computation -> 1.07967[0.001,0.5]
10843
10844
Interaction: 10845/20016 Out of bounds for computation -> 2.57673[0.001,0.5]
10846
10847
Interaction: 10848/20016 Out of bounds for computation -> 2.41184[0.001,0.5]
Interaction: 10849/20016 Out of bounds for computation -> 1.49807[0.001,0.5]
10850
10851
Interaction: 10852/20016 Out of bounds for computation -> 1.45228[0.001,0.5]
10853
10854
Interaction: 10855/20016 Out of bounds for computation -> 0.776013[0.001,0.5]
Interaction: 10856/20016 Out of bounds for computation -> 0.634016[0.001,0.5]
Interaction: 10857/20016 Out of bounds for computation -> 2.32351[0.001,0.5]
10858
10859
10860
Interaction: 10861/20016 Out of bounds for computation -> 0.507863[0.001,0.5]
10862
10863
Interaction: 10864/20016 Out of bounds for computation -> 0.977269[0.001,0.5]
10865
Interaction: 10866/20016 Out of bounds for computation -> 2.43645[0.001,0.5]
Interaction: 10867/20016 Out of bounds for computation -> 2.16744[0.001,0.5]
10868
10869
10870
Interaction: 10871/20016 Out of bounds for computation -> 0.591226[0.001,0.5]
10872
Interaction: 10873/20016 Out of bounds for computation -> 1.46472[0.001,0.5]
10874
10875
Interaction: 10876/20016 Out of bounds for computation -> 0.917725[0.001,0.5]
Interaction: 10877/20016 Out of bounds for computation -> 1.75372[0.001,0.5]
Interaction: 10878/20016 Out of bounds for computation -> 0.748435[0.001,0.5]
10879
10880
10881
10882
Interaction: 10883/20016 Out of bounds for computation -> 1.25347[0.001,0.5]
10884
Interaction: 10885/20016 Out of bounds for computation -> 0.829601[0.001,0.5]
10886
10887
Interaction: 10888/20016 Out of bounds for computation -> 1.33892[0.001,0.5]
10889
Interaction: 10890/20016 Out of bounds for computation -> 0.622471[0.001,0.5]
10891
10892
10893
Interaction: 10894/20016 Out of bounds for computation -> 1.26244[0.001,0.5]
10895
Interaction: 10896/20016 Out of bounds for computation -> 2.03549[0.001,0.5]
10897
10898
Interaction: 10899/20016 Out of bounds for computation -> 2.26743[0.001,0.5]
10900
Interaction: 10901/20016 Out of bounds for computation -> 2.09394[0.001,0.5]
10902
Interaction: 10903/20016 Out of bounds for computation -> 1.43511[0.001,0.5]
10904
10905
Interaction: 10906/20016 Out of bounds for computation -> 1.45961[0.001,0.5]
10907
Interaction: 10908/20016 Out of bounds for computation -> 1.13631[0.001,0.5]
10909
Interaction: 10910/20016 Out of bounds for computation -> 1.01182[0.001,0.5]
10911
10912
10913
Interaction: 10914/20016 Out of bounds for computation -> 1.42873[0.001,0.5]
Interaction: 10915/20016 Out of bounds for computation -> 2.45017[0.001,0.5]
Interaction: 10916/20016 Out of bounds for computation -> 2.67136[0.001,0.5]
10917
10918
10919
Interaction: 10920/20016 Out of bounds for computation -> 2.27134[0.001,0.5]
10921
10922
10923
10924
10925
10926
10927
Interaction: 10928/20016 Out of bounds for computation -> 0.676174[0.001,0.5]
Interaction: 10929/20016 Out of bounds for computation -> 0.529187[0.001,0.5]
10930
10931
10932
10933
Interaction: 10934/20016 Out of bounds for computation -> 0.604257[0.001,0.5]
10935
10936
10937
10938
10939
10940
10941
Interaction: 10942/20016 Out of bounds for computation -> 2.22024[0.001,0.5]
10943
10944
10945
10946
10947
Interaction: 10948/20016 Out of bounds for computation -> 0.504868[0.001,0.5]
Interaction: 10949/20016 Out of bounds for computation -> 1.92228[0.001,0.5]
10950
10951
Interaction: 10952/20016 Out of bounds for computation -> 2.82693[0.001,0.5]
10953
10954
10955
10956
10957
10958
Interaction: 10959/20016 Out of bounds for computation -> 2.47378[0.001,0.5]
Interaction: 10960/20016 Out of bounds for computation -> 0.77737[0.001,0.5]
Interaction: 10961/20016 Out of bounds for computation -> 1.69986[0.001,0.5]
Interaction: 10962/20016 Out of bounds for computation -> 0.771267[0.001,0.5]
10963
Interaction: 10964/20016 Out of bounds for computation -> 1.56876[0.001,0.5]
10965
10966
Interaction: 10967/20016 Out of bounds for computation -> 1.08227[0.001,0.5]
Interaction: 10968/20016 Out of bounds for computation -> 1.49013[0.001,0.5]
10969
10970
10971
10972
10973
10974
10975
Interaction: 10976/20016 Out of bounds for computation -> 2.33968[0.001,0.5]
10977
10978
Interaction: 10979/20016 Out of bounds for computation -> 1.18044[0.001,0.5]
Interaction: 10980/20016 Out of bounds for computation -> 2.23854[0.001,0.5]
10981
Interaction: 10982/20016 Out of bounds for computation -> 1.61278[0.001,0.5]
Interaction: 10983/20016 Out of bounds for computation -> 2.27422[0.001,0.5]
10984
Interaction: 10985/20016 Out of bounds for computation -> 2.03904[0.001,0.5]
Interaction: 10986/20016 Out of bounds for computation -> 1.23813[0.001,0.5]
Interaction: 10987/20016 Out of bounds for computation -> 1.48644[0.001,0.5]
10988
Interaction: 10989/20016 Out of bounds for computation -> 0.666058[0.001,0.5]
10990
10991
10992
10993
10994
10995
Interaction: 10996/20016 Out of bounds for computation -> 1.61182[0.001,0.5]
Interaction: 10997/20016 Out of bounds for computation -> 0.988589[0.001,0.5]
10998
10999
11000
11001
11002
11003
11004
11005
11006
Interaction: 11007/20016 Out of bounds for computation -> 2.48084[0.001,0.5]
Interaction: 11008/20016 Out of bounds for computation -> 0.536901[0.001,0.5]
11009
11010
11011
Interaction: 11012/20016 Out of bounds for computation -> 2.19716[0.001,0.5]
11013
11014
11015
Interaction: 11016/20016 Out of bounds for computation -> 0.698304[0.001,0.5]
11017
Interaction: 11018/20016 Out of bounds for computation -> 2.23953[0.001,0.5]
Interaction: 11019/20016 Out of bounds for computation -> 0.571957[0.001,0.5]
Interaction: 11020/20016 Out of bounds for computation -> 2.20901[0.001,0.5]
Interaction: 11021/20016 Out of bounds for computation -> 2.27145[0.001,0.5]
11022
Interaction: 11023/20016 Out of bounds for computation -> 1.47862[0.001,0.5]
11024
Interaction: 11025/20016 Out of bounds for computation -> 1.29016[0.001,0.5]
11026
Interaction: 11027/20016 Out of bounds for computation -> 0.815012[0.001,0.5]
11028
11029
Interaction: 11030/20016 Out of bounds for computation -> 2.11563[0.001,0.5]
11031
11032
11033
11034
Interaction: 11035/20016 Out of bounds for computation -> 0.574388[0.001,0.5]
11036
Interaction: 11037/20016 Out of bounds for computation -> 0.930244[0.001,0.5]
Interaction: 11038/20016 Out of bounds for computation -> 2.67897[0.001,0.5]
Interaction: 11039/20016 Out of bounds for computation -> 1.79442[0.001,0.5]
11040
Interaction: 11041/20016 Out of bounds for computation -> 1.69635[0.001,0.5]
Interaction: 11042/20016 Out of bounds for computation -> 1.95934[0.001,0.5]
11043
Interaction: 11044/20016 Out of bounds for computation -> 0.90492[0.001,0.5]
Interaction: 11045/20016 Out of bounds for computation -> 1.3594[0.001,0.5]
11046
Interaction: 11047/20016 Out of bounds for computation -> 1.4721[0.001,0.5]
Interaction: 11048/20016 Out of bounds for computation -> 2.74172[0.001,0.5]
11049
11050
11051
Interaction: 11052/20016 Out of bounds for computation -> 1.83774[0.001,0.5]
Interaction: 11053/20016 Out of bounds for computation -> 1.54204[0.001,0.5]
11054
11055
Interaction: 11056/20016 Out of bounds for computation -> 2.19277[0.001,0.5]
Interaction: 11057/20016 Out of bounds for computation -> 0.632243[0.001,0.5]
Interaction: 11058/20016 Out of bounds for computation -> 2.53173[0.001,0.5]
Interaction: 11059/20016 Out of bounds for computation -> 0.816993[0.001,0.5]
11060
11061
Interaction: 11062/20016 Out of bounds for computation -> 0.771911[0.001,0.5]
11063
Interaction: 11064/20016 Out of bounds for computation -> 0.533783[0.001,0.5]
11065
11066
11067
Interaction: 11068/20016 Out of bounds for computation -> 0.560895[0.001,0.5]
11069
11070
11071
Interaction: 11072/20016 Out of bounds for computation -> 1.9176[0.001,0.5]
Interaction: 11073/20016 Out of bounds for computation -> 0.957649[0.001,0.5]
Interaction: 11074/20016 Out of bounds for computation -> 2.40958[0.001,0.5]
Interaction: 11075/20016 Out of bounds for computation -> 1.9262[0.001,0.5]
11076
11077
Interaction: 11078/20016 Out of bounds for computation -> 0.873988[0.001,0.5]
11079
Interaction: 11080/20016 Out of bounds for computation -> 0.709462[0.001,0.5]
Interaction: 11081/20016 Out of bounds for computation -> 0.6952[0.001,0.5]
Interaction: 11082/20016 Out of bounds for computation -> 0.751151[0.001,0.5]
Interaction: 11083/20016 Out of bounds for computation -> 1.50103[0.001,0.5]
11084
11085
Interaction: 11086/20016 Out of bounds for computation -> 1.6416[0.001,0.5]
11087
11088
11089
Interaction: 11090/20016 Out of bounds for computation -> 0.571481[0.001,0.5]
11091
11092
11093
11094
11095
11096
Interaction: 11097/20016 Out of bounds for computation -> 1.75774[0.001,0.5]
Interaction: 11098/20016 Out of bounds for computation -> 0.537595[0.001,0.5]
Interaction: 11099/20016 Out of bounds for computation -> 2.50241[0.001,0.5]
Interaction: 11100/20016 Out of bounds for computation -> 1.85022[0.001,0.5]
11101
11102
11103
Interaction: 11104/20016 Out of bounds for computation -> 0.506398[0.001,0.5]
11105
11106
11107
11108
11109
Interaction: 11110/20016 Out of bounds for computation -> 0.770086[0.001,0.5]
11111
Interaction: 11112/20016 Out of bounds for computation -> 1.52358[0.001,0.5]
Interaction: 11113/20016 Out of bounds for computation -> 2.46037[0.001,0.5]
11114
Interaction: 11115/20016 Out of bounds for computation -> 2.16307[0.001,0.5]
11116
Interaction: 11117/20016 Out of bounds for computation -> 0.776382[0.001,0.5]
Interaction: 11118/20016 Out of bounds for computation -> 2.6938[0.001,0.5]
Interaction: 11119/20016 Out of bounds for computation -> 2.55096[0.001,0.5]
Interaction: 11120/20016 Out of bounds for computation -> 1.45268[0.001,0.5]
Interaction: 11121/20016 Out of bounds for computation -> 2.39655[0.001,0.5]
11122
11123
11124
Interaction: 11125/20016 Out of bounds for computation -> 2.00781[0.001,0.5]
11126
11127
11128
Interaction: 11129/20016 Out of bounds for computation -> 1.49719[0.001,0.5]
11130
Interaction: 11131/20016 Out of bounds for computation -> 1.49618[0.001,0.5]
11132
11133
Interaction: 11134/20016 Out of bounds for computation -> 2.02973[0.001,0.5]
11135
Interaction: 11136/20016 Out of bounds for computation -> 1.5109[0.001,0.5]
Interaction: 11137/20016 Out of bounds for computation -> 2.03469[0.001,0.5]
11138
11139
11140
11141
Interaction: 11142/20016 Out of bounds for computation -> 1.4872[0.001,0.5]
Interaction: 11143/20016 Out of bounds for computation -> 2.77306[0.001,0.5]
11144
11145
Interaction: 11146/20016 Out of bounds for computation -> 0.529851[0.001,0.5]
11147
11148
11149
Interaction: 11150/20016 Out of bounds for computation -> 2.08652[0.001,0.5]
11151
11152
11153
11154
11155
11156
Interaction: 11157/20016 Out of bounds for computation -> 1.59768[0.001,0.5]
11158
11159
11160
Interaction: 11161/20016 Out of bounds for computation -> 0.64379[0.001,0.5]
11162
11163
11164
11165
11166
Interaction: 11167/20016 Out of bounds for computation -> 0.683418[0.001,0.5]
11168
11169
Interaction: 11170/20016 Out of bounds for computation -> 1.53879[0.001,0.5]
11171
11172
Interaction: 11173/20016 Out of bounds for computation -> 1.68107[0.001,0.5]
Interaction: 11174/20016 Out of bounds for computation -> 1.45285[0.001,0.5]
11175
11176
Interaction: 11177/20016 Out of bounds for computation -> 0.802006[0.001,0.5]
11178
11179
Interaction: 11180/20016 Out of bounds for computation -> 2.0418[0.001,0.5]
Interaction: 11181/20016 Out of bounds for computation -> 2.45433[0.001,0.5]
Interaction: 11182/20016 Out of bounds for computation -> 0.543427[0.001,0.5]
Interaction: 11183/20016 Out of bounds for computation -> 0.576266[0.001,0.5]
11184
11185
11186
Interaction: 11187/20016 Out of bounds for computation -> 2.28031[0.001,0.5]
11188
Interaction: 11189/20016 Out of bounds for computation -> 0.708654[0.001,0.5]
11190
11191
11192
Interaction: 11193/20016 Out of bounds for computation -> 1.73096[0.001,0.5]
11194
11195
Interaction: 11196/20016 Out of bounds for computation -> 2.61662[0.001,0.5]
11197
11198
Interaction: 11199/20016 Out of bounds for computation -> 1.48633[0.001,0.5]
11200
Interaction: 11201/20016 Out of bounds for computation -> 0.852477[0.001,0.5]
11202
11203
Interaction: 11204/20016 Out of bounds for computation -> 1.50622[0.001,0.5]
11205
11206
Interaction: 11207/20016 Out of bounds for computation -> 2.64877[0.001,0.5]
Interaction: 11208/20016 Out of bounds for computation -> 0.850383[0.001,0.5]
Interaction: 11209/20016 Out of bounds for computation -> 0.81448[0.001,0.5]
11210
11211
11212
11213
Interaction: 11214/20016 Out of bounds for computation -> 1.42933[0.001,0.5]
11215
11216
11217
Interaction: 11218/20016 Out of bounds for computation -> 2.21994[0.001,0.5]
11219
11220
11221
Interaction: 11222/20016 Out of bounds for computation -> 1.01326[0.001,0.5]
11223
11224
11225
11226
Interaction: 11227/20016 Out of bounds for computation -> 2.86305[0.001,0.5]
Interaction: 11228/20016 Out of bounds for computation -> 2.24214[0.001,0.5]
Interaction: 11229/20016 Out of bounds for computation -> 0.589174[0.001,0.5]
Interaction: 11230/20016 Out of bounds for computation -> 2.79126[0.001,0.5]
11231
11232
11233
11234
11235
11236
Interaction: 11237/20016 Out of bounds for computation -> 0.629021[0.001,0.5]
Interaction: 11238/20016 Out of bounds for computation -> 1.42692[0.001,0.5]
Interaction: 11239/20016 Out of bounds for computation -> 2.06426[0.001,0.5]
Interaction: 11240/20016 Out of bounds for computation -> 0.519722[0.001,0.5]
11241
11242
11243
11244
11245
11246
Interaction: 11247/20016 Out of bounds for computation -> 0.690484[0.001,0.5]
11248
11249
Interaction: 11250/20016 Out of bounds for computation -> 1.28189[0.001,0.5]
Interaction: 11251/20016 Out of bounds for computation -> 0.673701[0.001,0.5]
Interaction: 11252/20016 Out of bounds for computation -> 0.525733[0.001,0.5]
11253
Interaction: 11254/20016 Out of bounds for computation -> 2.72464[0.001,0.5]
11255
11256
Interaction: 11257/20016 Out of bounds for computation -> 1.47155[0.001,0.5]
Interaction: 11258/20016 Out of bounds for computation -> 0.792156[0.001,0.5]
11259
Interaction: 11260/20016 Out of bounds for computation -> 1.85302[0.001,0.5]
11261
11262
Interaction: 11263/20016 Out of bounds for computation -> 0.692647[0.001,0.5]
11264
11265
Interaction: 11266/20016 Out of bounds for computation -> 0.651331[0.001,0.5]
11267
Interaction: 11268/20016 Out of bounds for computation -> 0.725768[0.001,0.5]
11269
11270
11271
11272
11273
11274
11275
Interaction: 11276/20016 Out of bounds for computation -> 1.5069[0.001,0.5]
11277
11278
11279
Interaction: 11280/20016 Out of bounds for computation -> 0.601534[0.001,0.5]
Interaction: 11281/20016 Out of bounds for computation -> 1.85099[0.001,0.5]
11282
11283
11284
11285
Interaction: 11286/20016 Out of bounds for computation -> 2.00081[0.001,0.5]
Interaction: 11287/20016 Out of bounds for computation -> 1.66191[0.001,0.5]
11288
Interaction: 11289/20016 Out of bounds for computation -> 1.90563[0.001,0.5]
11290
Interaction: 11291/20016 Out of bounds for computation -> 2.73158[0.001,0.5]
11292
11293
11294
11295
Interaction: 11296/20016 Out of bounds for computation -> 0.741751[0.001,0.5]
11297
11298
11299
Interaction: 11300/20016 Out of bounds for computation -> 0.751158[0.001,0.5]
Interaction: 11301/20016 Out of bounds for computation -> 0.672134[0.001,0.5]
11302
11303
Interaction: 11304/20016 Out of bounds for computation -> 0.500239[0.001,0.5]
Interaction: 11305/20016 Out of bounds for computation -> 1.71975[0.001,0.5]
11306
11307
11308
11309
11310
11311
11312
11313
Interaction: 11314/20016 Out of bounds for computation -> 2.55409[0.001,0.5]
11315
11316
11317
11318
11319
11320
Interaction: 11321/20016 Out of bounds for computation -> 2.56431[0.001,0.5]
11322
Interaction: 11323/20016 Out of bounds for computation -> 0.693977[0.001,0.5]
11324
Interaction: 11325/20016 Out of bounds for computation -> 2.15778[0.001,0.5]
11326
11327
Interaction: 11328/20016 Out of bounds for computation -> 0.838252[0.001,0.5]
11329
11330
11331
11332
11333
Interaction: 11334/20016 Out of bounds for computation -> 1.56754[0.001,0.5]
11335
Interaction: 11336/20016 Out of bounds for computation -> 2.71164[0.001,0.5]
Interaction: 11337/20016 Out of bounds for computation -> 0.720098[0.001,0.5]
11338
11339
Interaction: 11340/20016 Out of bounds for computation -> 1.59095[0.001,0.5]
11341
11342
Interaction: 11343/20016 Out of bounds for computation -> 1.17976[0.001,0.5]
11344
11345
Interaction: 11346/20016 Out of bounds for computation -> 2.20325[0.001,0.5]
11347
Interaction: 11348/20016 Out of bounds for computation -> 1.90765[0.001,0.5]
11349
11350
Interaction: 11351/20016 Out of bounds for computation -> 1.72721[0.001,0.5]
11352
11353
11354
11355
Interaction: 11356/20016 Out of bounds for computation -> 2.78596[0.001,0.5]
11357
11358
11359
Interaction: 11360/20016 Out of bounds for computation -> 2.17746[0.001,0.5]
11361
11362
11363
Interaction: 11364/20016 Out of bounds for computation -> 1.46927[0.001,0.5]
Interaction: 11365/20016 Out of bounds for computation -> 1.49741[0.001,0.5]
11366
Interaction: 11367/20016 Out of bounds for computation -> 2.69931[0.001,0.5]
11368
Interaction: 11369/20016 Out of bounds for computation -> 0.941653[0.001,0.5]
11370
Interaction: 11371/20016 Out of bounds for computation -> 0.901811[0.001,0.5]
11372
11373
Interaction: 11374/20016 Out of bounds for computation -> 0.966458[0.001,0.5]
11375
11376
11377
Interaction: 11378/20016 Out of bounds for computation -> 1.50008[0.001,0.5]
Interaction: 11379/20016 Out of bounds for computation -> 2.30279[0.001,0.5]
11380
11381
Interaction: 11382/20016 Out of bounds for computation -> 1.95015[0.001,0.5]
Interaction: 11383/20016 Out of bounds for computation -> 1.55912[0.001,0.5]
11384
Interaction: 11385/20016 Out of bounds for computation -> 0.885877[0.001,0.5]
11386
Interaction: 11387/20016 Out of bounds for computation -> 1.71931[0.001,0.5]
Interaction: 11388/20016 Out of bounds for computation -> 0.680587[0.001,0.5]
11389
11390
Interaction: 11391/20016 Out of bounds for computation -> 1.91909[0.001,0.5]
11392
11393
Interaction: 11394/20016 Out of bounds for computation -> 1.40562[0.001,0.5]
11395
11396
Interaction: 11397/20016 Out of bounds for computation -> 0.700997[0.001,0.5]
11398
11399
Interaction: 11400/20016 Out of bounds for computation -> 0.613172[0.001,0.5]
11401
Interaction: 11402/20016 Out of bounds for computation -> 0.679878[0.001,0.5]
11403
Interaction: 11404/20016 Out of bounds for computation -> 2.5161[0.001,0.5]
Interaction: 11405/20016 Out of bounds for computation -> 2.07515[0.001,0.5]
Interaction: 11406/20016 Out of bounds for computation -> 1.93712[0.001,0.5]
11407
11408
Interaction: 11409/20016 Out of bounds for computation -> 0.551851[0.001,0.5]
11410
Interaction: 11411/20016 Out of bounds for computation -> 0.512457[0.001,0.5]
11412
Interaction: 11413/20016 Out of bounds for computation -> 1.6384[0.001,0.5]
Interaction: 11414/20016 Out of bounds for computation -> 0.571194[0.001,0.5]
Interaction: 11415/20016 Out of bounds for computation -> 2.62991[0.001,0.5]
Interaction: 11416/20016 Out of bounds for computation -> 1.42902[0.001,0.5]
11417
Interaction: 11418/20016 Out of bounds for computation -> 2.54155[0.001,0.5]
Interaction: 11419/20016 Out of bounds for computation -> 2.52038[0.001,0.5]
Interaction: 11420/20016 Out of bounds for computation -> 1.23794[0.001,0.5]
11421
11422
Interaction: 11423/20016 Out of bounds for computation -> 2.30135[0.001,0.5]
11424
Interaction: 11425/20016 Out of bounds for computation -> 0.722632[0.001,0.5]
11426
Interaction: 11427/20016 Out of bounds for computation -> 0.534857[0.001,0.5]
Interaction: 11428/20016 Out of bounds for computation -> 0.777351[0.001,0.5]
Interaction: 11429/20016 Out of bounds for computation -> 1.50732[0.001,0.5]
Interaction: 11430/20016 Out of bounds for computation -> 0.543543[0.001,0.5]
Interaction: 11431/20016 Out of bounds for computation -> 2.0121[0.001,0.5]
Interaction: 11432/20016 Out of bounds for computation -> 0.583646[0.001,0.5]
11433
11434
11435
Interaction: 11436/20016 Out of bounds for computation -> 2.59333[0.001,0.5]
11437
11438
11439
Interaction: 11440/20016 Out of bounds for computation -> 2.72899[0.001,0.5]
Interaction: 11441/20016 Out of bounds for computation -> 0.505852[0.001,0.5]
11442
11443
Interaction: 11444/20016 Out of bounds for computation -> 1.84667[0.001,0.5]
11445
11446
11447
11448
11449
11450
11451
11452
11453
Interaction: 11454/20016 Out of bounds for computation -> 1.35415[0.001,0.5]
11455
11456
11457
11458
Interaction: 11459/20016 Out of bounds for computation -> 1.77557[0.001,0.5]
Interaction: 11460/20016 Out of bounds for computation -> 0.711262[0.001,0.5]
11461
11462
11463
11464
11465
11466
Interaction: 11467/20016 Out of bounds for computation -> 0.509924[0.001,0.5]
Interaction: 11468/20016 Out of bounds for computation -> 1.64797[0.001,0.5]
Interaction: 11469/20016 Out of bounds for computation -> 0.852055[0.001,0.5]
Interaction: 11470/20016 Out of bounds for computation -> 0.791126[0.001,0.5]
Interaction: 11471/20016 Out of bounds for computation -> 0.830354[0.001,0.5]
11472
11473
Interaction: 11474/20016 Out of bounds for computation -> 1.51884[0.001,0.5]
Interaction: 11475/20016 Out of bounds for computation -> 2.65764[0.001,0.5]
11476
11477
Interaction: 11478/20016 Out of bounds for computation -> 2.15613[0.001,0.5]
Interaction: 11479/20016 Out of bounds for computation -> 2.0081[0.001,0.5]
Interaction: 11480/20016 Out of bounds for computation -> 0.659039[0.001,0.5]
11481
Interaction: 11482/20016 Out of bounds for computation -> 0.626149[0.001,0.5]
Interaction: 11483/20016 Out of bounds for computation -> 0.800449[0.001,0.5]
11484
11485
Interaction: 11486/20016 Out of bounds for computation -> 0.899924[0.001,0.5]
11487
Interaction: 11488/20016 Out of bounds for computation -> 1.58435[0.001,0.5]
11489
11490
11491
11492
Interaction: 11493/20016 Out of bounds for computation -> 2.43175[0.001,0.5]
Interaction: 11494/20016 Out of bounds for computation -> 0.601853[0.001,0.5]
11495
11496
Interaction: 11497/20016 Out of bounds for computation -> 1.66202[0.001,0.5]
Interaction: 11498/20016 Out of bounds for computation -> 2.83512[0.001,0.5]
11499
11500
11501
Interaction: 11502/20016 Out of bounds for computation -> 0.644971[0.001,0.5]
11503
11504
Interaction: 11505/20016 Out of bounds for computation -> 2.39046[0.001,0.5]
11506
11507
11508
Interaction: 11509/20016 Out of bounds for computation -> 2.62453[0.001,0.5]
11510
Interaction: 11511/20016 Out of bounds for computation -> 1.49764[0.001,0.5]
11512
11513
11514
Interaction: 11515/20016 Out of bounds for computation -> 2.22918[0.001,0.5]
11516
Interaction: 11517/20016 Out of bounds for computation -> 2.65122[0.001,0.5]
Interaction: 11518/20016 Out of bounds for computation -> 0.527328[0.001,0.5]
11519
11520
11521
11522
11523
11524
Interaction: 11525/20016 Out of bounds for computation -> 2.01077[0.001,0.5]
11526
11527
11528
Interaction: 11529/20016 Out of bounds for computation -> 0.517526[0.001,0.5]
11530
Interaction: 11531/20016 Out of bounds for computation -> 2.3058[0.001,0.5]
11532
11533
11534
11535
Interaction: 11536/20016 Out of bounds for computation -> 2.27254[0.001,0.5]
Interaction: 11537/20016 Out of bounds for computation -> 1.04166[0.001,0.5]
11538
11539
11540
11541
Interaction: 11542/20016 Out of bounds for computation -> 0.744819[0.001,0.5]
11543
11544
11545
11546
Interaction: 11547/20016 Out of bounds for computation -> 2.82949[0.001,0.5]
11548
Interaction: 11549/20016 Out of bounds for computation -> 1.7707[0.001,0.5]
Interaction: 11550/20016 Out of bounds for computation -> 1.77454[0.001,0.5]
11551
Interaction: 11552/20016 Out of bounds for computation -> 1.371[0.001,0.5]
Interaction: 11553/20016 Out of bounds for computation -> 2.76729[0.001,0.5]
11554
11555
11556
11557
11558
Interaction: 11559/20016 Out of bounds for computation -> 2.63795[0.001,0.5]
11560
Interaction: 11561/20016 Out of bounds for computation -> 1.1892[0.001,0.5]
11562
11563
Interaction: 11564/20016 Out of bounds for computation -> 0.539711[0.001,0.5]
Interaction: 11565/20016 Out of bounds for computation -> 1.60153[0.001,0.5]
Interaction: 11566/20016 Out of bounds for computation -> 1.98858[0.001,0.5]
Interaction: 11567/20016 Out of bounds for computation -> 0.619842[0.001,0.5]
11568
11569
11570
Interaction: 11571/20016 Out of bounds for computation -> 1.08514[0.001,0.5]
11572
11573
Interaction: 11574/20016 Out of bounds for computation -> 0.563201[0.001,0.5]
Interaction: 11575/20016 Out of bounds for computation -> 0.797399[0.001,0.5]
11576
11577
Interaction: 11578/20016 Out of bounds for computation -> 2.34367[0.001,0.5]
11579
Interaction: 11580/20016 Out of bounds for computation -> 0.526648[0.001,0.5]
Interaction: 11581/20016 Out of bounds for computation -> 0.680183[0.001,0.5]
11582
Interaction: 11583/20016 Out of bounds for computation -> 1.07801[0.001,0.5]
11584
11585
Interaction: 11586/20016 Out of bounds for computation -> 0.838387[0.001,0.5]
11587
Interaction: 11588/20016 Out of bounds for computation -> 2.09167[0.001,0.5]
11589
Interaction: 11590/20016 Out of bounds for computation -> 2.29099[0.001,0.5]
11591
11592
11593
11594
11595
11596
Interaction: 11597/20016 Out of bounds for computation -> 1.44866[0.001,0.5]
11598
Interaction: 11599/20016 Out of bounds for computation -> 0.563916[0.001,0.5]
Interaction: 11600/20016 Out of bounds for computation -> 2.11339[0.001,0.5]
11601
11602
11603
11604
11605
11606
11607
11608
11609
Interaction: 11610/20016 Out of bounds for computation -> 2.50922[0.001,0.5]
11611
11612
Interaction: 11613/20016 Out of bounds for computation -> 1.35509[0.001,0.5]
11614
Interaction: 11615/20016 Out of bounds for computation -> 0.721834[0.001,0.5]
11616
11617
Interaction: 11618/20016 Out of bounds for computation -> 1.48887[0.001,0.5]
11619
Interaction: 11620/20016 Out of bounds for computation -> 0.851261[0.001,0.5]
11621
11622
11623
11624
Interaction: 11625/20016 Out of bounds for computation -> 2.50595[0.001,0.5]
11626
11627
Interaction: 11628/20016 Out of bounds for computation -> 2.34966[0.001,0.5]
Interaction: 11629/20016 Out of bounds for computation -> 0.611011[0.001,0.5]
Interaction: 11630/20016 Out of bounds for computation -> 1.72504[0.001,0.5]
11631
11632
11633
11634
11635
11636
11637
11638
11639
11640
11641
Interaction: 11642/20016 Out of bounds for computation -> 1.15488[0.001,0.5]
11643
11644
11645
11646
Interaction: 11647/20016 Out of bounds for computation -> 1.34842[0.001,0.5]
Interaction: 11648/20016 Out of bounds for computation -> 1.60083[0.001,0.5]
Interaction: 11649/20016 Out of bounds for computation -> 0.820897[0.001,0.5]
11650
Interaction: 11651/20016 Out of bounds for computation -> 2.46644[0.001,0.5]
Interaction: 11652/20016 Out of bounds for computation -> 2.59263[0.001,0.5]
Interaction: 11653/20016 Out of bounds for computation -> 0.691272[0.001,0.5]
Interaction: 11654/20016 Out of bounds for computation -> 2.52605[0.001,0.5]
11655
11656
11657
Interaction: 11658/20016 Out of bounds for computation -> 0.58139[0.001,0.5]
Interaction: 11659/20016 Out of bounds for computation -> 1.49262[0.001,0.5]
Interaction: 11660/20016 Out of bounds for computation -> 0.515479[0.001,0.5]
11661
11662
11663
11664
11665
Interaction: 11666/20016 Out of bounds for computation -> 0.682304[0.001,0.5]
11667
11668
11669
11670
Interaction: 11671/20016 Out of bounds for computation -> 1.76501[0.001,0.5]
11672
11673
Interaction: 11674/20016 Out of bounds for computation -> 2.1417[0.001,0.5]
Interaction: 11675/20016 Out of bounds for computation -> 2.86593[0.001,0.5]
11676
Interaction: 11677/20016 Out of bounds for computation -> 2.80626[0.001,0.5]
11678
11679
11680
Interaction: 11681/20016 Out of bounds for computation -> 1.51052[0.001,0.5]
Interaction: 11682/20016 Out of bounds for computation -> 1.0613[0.001,0.5]
Interaction: 11683/20016 Out of bounds for computation -> 2.0618[0.001,0.5]
11684
11685
Interaction: 11686/20016 Out of bounds for computation -> 2.05533[0.001,0.5]
11687
11688
Interaction: 11689/20016 Out of bounds for computation -> 2.20197[0.001,0.5]
11690
Interaction: 11691/20016 Out of bounds for computation -> 0.66518[0.001,0.5]
Interaction: 11692/20016 Out of bounds for computation -> 1.01649[0.001,0.5]
11693
11694
11695
Interaction: 11696/20016 Out of bounds for computation -> 1.50727[0.001,0.5]
11697
Interaction: 11698/20016 Out of bounds for computation -> 2.23215[0.001,0.5]
11699
11700
Interaction: 11701/20016 Out of bounds for computation -> 1.6678[0.001,0.5]
Interaction: 11702/20016 Out of bounds for computation -> 0.564385[0.001,0.5]
Interaction: 11703/20016 Out of bounds for computation -> 2.05741[0.001,0.5]
Interaction: 11704/20016 Out of bounds for computation -> 0.503633[0.001,0.5]
Interaction: 11705/20016 Out of bounds for computation -> 0.623369[0.001,0.5]
11706
11707
Interaction: 11708/20016 Out of bounds for computation -> 1.49952[0.001,0.5]
Interaction: 11709/20016 Out of bounds for computation -> 1.54215[0.001,0.5]
11710
Interaction: 11711/20016 Out of bounds for computation -> 1.50441[0.001,0.5]
11712
11713
11714
11715
11716
11717
Interaction: 11718/20016 Out of bounds for computation -> 1.51186[0.001,0.5]
11719
11720
11721
11722
Interaction: 11723/20016 Out of bounds for computation -> 2.48093[0.001,0.5]
11724
Interaction: 11725/20016 Out of bounds for computation -> 0.655136[0.001,0.5]
11726
Interaction: 11727/20016 Out of bounds for computation -> 0.520651[0.001,0.5]
Interaction: 11728/20016 Out of bounds for computation -> 1.02835[0.001,0.5]
Interaction: 11729/20016 Out of bounds for computation -> 0.661557[0.001,0.5]
Interaction: 11730/20016 Out of bounds for computation -> 0.637048[0.001,0.5]
11731
Interaction: 11732/20016 Out of bounds for computation -> 1.66274[0.001,0.5]
11733
11734
Interaction: 11735/20016 Out of bounds for computation -> 1.48718[0.001,0.5]
Interaction: 11736/20016 Out of bounds for computation -> 2.72179[0.001,0.5]
Interaction: 11737/20016 Out of bounds for computation -> 1.4855[0.001,0.5]
11738
Interaction: 11739/20016 Out of bounds for computation -> 2.23977[0.001,0.5]
Interaction: 11740/20016 Out of bounds for computation -> 0.630205[0.001,0.5]
11741
Interaction: 11742/20016 Out of bounds for computation -> 0.774079[0.001,0.5]
Interaction: 11743/20016 Out of bounds for computation -> 1.51139[0.001,0.5]
11744
Interaction: 11745/20016 Out of bounds for computation -> 1.51097[0.001,0.5]
11746
Interaction: 11747/20016 Out of bounds for computation -> 1.58431[0.001,0.5]
Interaction: 11748/20016 Out of bounds for computation -> 1.545[0.001,0.5]
Interaction: 11749/20016 Out of bounds for computation -> 2.5423[0.001,0.5]
Interaction: 11750/20016 Out of bounds for computation -> 2.22872[0.001,0.5]
Interaction: 11751/20016 Out of bounds for computation -> 2.54983[0.001,0.5]
Interaction: 11752/20016 Out of bounds for computation -> 0.795464[0.001,0.5]
Interaction: 11753/20016 Out of bounds for computation -> 1.68854[0.001,0.5]
Interaction: 11754/20016 Out of bounds for computation -> 0.600971[0.001,0.5]
Interaction: 11755/20016 Out of bounds for computation -> 2.60864[0.001,0.5]
11756
11757
Interaction: 11758/20016 Out of bounds for computation -> 2.06981[0.001,0.5]
11759
Interaction: 11760/20016 Out of bounds for computation -> 0.739409[0.001,0.5]
Interaction: 11761/20016 Out of bounds for computation -> 2.33942[0.001,0.5]
Interaction: 11762/20016 Out of bounds for computation -> 2.17999[0.001,0.5]
11763
Interaction: 11764/20016 Out of bounds for computation -> 1.91903[0.001,0.5]
11765
Interaction: 11766/20016 Out of bounds for computation -> 2.50173[0.001,0.5]
Interaction: 11767/20016 Out of bounds for computation -> 0.544297[0.001,0.5]
11768
Interaction: 11769/20016 Out of bounds for computation -> 0.906923[0.001,0.5]
11770
Interaction: 11771/20016 Out of bounds for computation -> 0.648846[0.001,0.5]
Interaction: 11772/20016 Out of bounds for computation -> 0.546975[0.001,0.5]
Interaction: 11773/20016 Out of bounds for computation -> 0.776146[0.001,0.5]
Interaction: 11774/20016 Out of bounds for computation -> 1.50511[0.001,0.5]
Interaction: 11775/20016 Out of bounds for computation -> 1.09587[0.001,0.5]
Interaction: 11776/20016 Out of bounds for computation -> 2.68802[0.001,0.5]
11777
Interaction: 11778/20016 Out of bounds for computation -> 1.16918[0.001,0.5]
11779
11780
11781
11782
Interaction: 11783/20016 Out of bounds for computation -> 0.660895[0.001,0.5]
Interaction: 11784/20016 Out of bounds for computation -> 0.69911[0.001,0.5]
11785
11786
11787
Interaction: 11788/20016 Out of bounds for computation -> 0.78428[0.001,0.5]
Interaction: 11789/20016 Out of bounds for computation -> 1.43275[0.001,0.5]
11790
Interaction: 11791/20016 Out of bounds for computation -> 1.52903[0.001,0.5]
11792
11793
11794
11795
11796
11797
11798
11799
11800
11801
11802
11803
Interaction: 11804/20016 Out of bounds for computation -> 0.660134[0.001,0.5]
11805
Interaction: 11806/20016 Out of bounds for computation -> 2.54511[0.001,0.5]
11807
11808
11809
Interaction: 11810/20016 Out of bounds for computation -> 1.60456[0.001,0.5]
Interaction: 11811/20016 Out of bounds for computation -> 0.629612[0.001,0.5]
Interaction: 11812/20016 Out of bounds for computation -> 0.713618[0.001,0.5]
Interaction: 11813/20016 Out of bounds for computation -> 0.517888[0.001,0.5]
Interaction: 11814/20016 Out of bounds for computation -> 1.4935[0.001,0.5]
11815
Interaction: 11816/20016 Out of bounds for computation -> 0.792903[0.001,0.5]
11817
11818
Interaction: 11819/20016 Out of bounds for computation -> 1.91343[0.001,0.5]
11820
11821
11822
11823
11824
11825
Interaction: 11826/20016 Out of bounds for computation -> 0.816489[0.001,0.5]
11827
11828
11829
11830
Interaction: 11831/20016 Out of bounds for computation -> 2.04468[0.001,0.5]
11832
11833
Interaction: 11834/20016 Out of bounds for computation -> 0.921435[0.001,0.5]
11835
Interaction: 11836/20016 Out of bounds for computation -> 2.83074[0.001,0.5]
Interaction: 11837/20016 Out of bounds for computation -> 0.629228[0.001,0.5]
Interaction: 11838/20016 Out of bounds for computation -> 1.2752[0.001,0.5]
Interaction: 11839/20016 Out of bounds for computation -> 0.584974[0.001,0.5]
11840
11841
11842
11843
11844
11845
Interaction: 11846/20016 Out of bounds for computation -> 0.646482[0.001,0.5]
Interaction: 11847/20016 Out of bounds for computation -> 0.709649[0.001,0.5]
Interaction: 11848/20016 Out of bounds for computation -> 0.677354[0.001,0.5]
Interaction: 11849/20016 Out of bounds for computation -> 1.30655[0.001,0.5]
11850
Interaction: 11851/20016 Out of bounds for computation -> 2.23425[0.001,0.5]
11852
11853
Interaction: 11854/20016 Out of bounds for computation -> 2.00201[0.001,0.5]
11855
11856
Interaction: 11857/20016 Out of bounds for computation -> 2.07934[0.001,0.5]
Interaction: 11858/20016 Out of bounds for computation -> 0.590821[0.001,0.5]
Interaction: 11859/20016 Out of bounds for computation -> 1.54533[0.001,0.5]
11860
11861
Interaction: 11862/20016 Out of bounds for computation -> 0.668477[0.001,0.5]
Interaction: 11863/20016 Out of bounds for computation -> 1.10046[0.001,0.5]
11864
Interaction: 11865/20016 Out of bounds for computation -> 2.715[0.001,0.5]
Interaction: 11866/20016 Out of bounds for computation -> 1.75604[0.001,0.5]
11867
11868
11869
11870
11871
11872
Interaction: 11873/20016 Out of bounds for computation -> 2.31853[0.001,0.5]
Interaction: 11874/20016 Out of bounds for computation -> 0.680891[0.001,0.5]
11875
Interaction: 11876/20016 Out of bounds for computation -> 0.592996[0.001,0.5]
Interaction: 11877/20016 Out of bounds for computation -> 2.18036[0.001,0.5]
11878
Interaction: 11879/20016 Out of bounds for computation -> 1.70934[0.001,0.5]
11880
Interaction: 11881/20016 Out of bounds for computation -> 0.529[0.001,0.5]
11882
Interaction: 11883/20016 Out of bounds for computation -> 1.52285[0.001,0.5]
11884
Interaction: 11885/20016 Out of bounds for computation -> 0.564111[0.001,0.5]
Interaction: 11886/20016 Out of bounds for computation -> 1.87551[0.001,0.5]
Interaction: 11887/20016 Out of bounds for computation -> 1.47043[0.001,0.5]
Interaction: 11888/20016 Out of bounds for computation -> 0.538535[0.001,0.5]
11889
Interaction: 11890/20016 Out of bounds for computation -> 0.855179[0.001,0.5]
11891
11892
Interaction: 11893/20016 Out of bounds for computation -> 0.809728[0.001,0.5]
11894
Interaction: 11895/20016 Out of bounds for computation -> 1.03229[0.001,0.5]
Interaction: 11896/20016 Out of bounds for computation -> 1.18969[0.001,0.5]
11897
Interaction: 11898/20016 Out of bounds for computation -> 1.51894[0.001,0.5]
11899
11900
11901
Interaction: 11902/20016 Out of bounds for computation -> 1.00757[0.001,0.5]
11903
11904
Interaction: 11905/20016 Out of bounds for computation -> 0.609302[0.001,0.5]
11906
Interaction: 11907/20016 Out of bounds for computation -> 0.620771[0.001,0.5]
11908
Interaction: 11909/20016 Out of bounds for computation -> 2.31395[0.001,0.5]
11910
11911
11912
11913
11914
11915
11916
11917
11918
11919
11920
11921
11922
Interaction: 11923/20016 Out of bounds for computation -> 1.02178[0.001,0.5]
11924
Interaction: 11925/20016 Out of bounds for computation -> 2.23697[0.001,0.5]
11926
11927
Interaction: 11928/20016 Out of bounds for computation -> 0.597252[0.001,0.5]
Interaction: 11929/20016 Out of bounds for computation -> 2.70021[0.001,0.5]
11930
11931
Interaction: 11932/20016 Out of bounds for computation -> 0.642108[0.001,0.5]
11933
11934
11935
11936
Interaction: 11937/20016 Out of bounds for computation -> 1.90136[0.001,0.5]
11938
Interaction: 11939/20016 Out of bounds for computation -> 1.5357[0.001,0.5]
Interaction: 11940/20016 Out of bounds for computation -> 2.73076[0.001,0.5]
11941
11942
11943
Interaction: 11944/20016 Out of bounds for computation -> 1.48495[0.001,0.5]
11945
Interaction: 11946/20016 Out of bounds for computation -> 0.55929[0.001,0.5]
Interaction: 11947/20016 Out of bounds for computation -> 2.78543[0.001,0.5]
Interaction: 11948/20016 Out of bounds for computation -> 1.46989[0.001,0.5]
11949
11950
11951
11952
11953
11954
Interaction: 11955/20016 Out of bounds for computation -> 2.14436[0.001,0.5]
11956
11957
11958
11959
Interaction: 11960/20016 Out of bounds for computation -> 0.776231[0.001,0.5]
Interaction: 11961/20016 Out of bounds for computation -> 2.19256[0.001,0.5]
11962
Interaction: 11963/20016 Out of bounds for computation -> 2.30132[0.001,0.5]
Interaction: 11964/20016 Out of bounds for computation -> 0.636687[0.001,0.5]
Interaction: 11965/20016 Out of bounds for computation -> 1.57938[0.001,0.5]
11966
Interaction: 11967/20016 Out of bounds for computation -> 0.559248[0.001,0.5]
11968
Interaction: 11969/20016 Out of bounds for computation -> 0.569788[0.001,0.5]
11970
Interaction: 11971/20016 Out of bounds for computation -> 0.994491[0.001,0.5]
11972
Interaction: 11973/20016 Out of bounds for computation -> 2.26657[0.001,0.5]
11974
Interaction: 11975/20016 Out of bounds for computation -> 2.54322[0.001,0.5]
Interaction: 11976/20016 Out of bounds for computation -> 2.71325[0.001,0.5]
11977
11978
Interaction: 11979/20016 Out of bounds for computation -> 0.770113[0.001,0.5]
11980
Interaction: 11981/20016 Out of bounds for computation -> 1.51604[0.001,0.5]
11982
11983
11984
Interaction: 11985/20016 Out of bounds for computation -> 1.85556[0.001,0.5]
Interaction: 11986/20016 Out of bounds for computation -> 0.911707[0.001,0.5]
Interaction: 11987/20016 Out of bounds for computation -> 2.07792[0.001,0.5]
11988
Interaction: 11989/20016 Out of bounds for computation -> 2.22442[0.001,0.5]
Interaction: 11990/20016 Out of bounds for computation -> 2.39632[0.001,0.5]
Interaction: 11991/20016 Out of bounds for computation -> 1.15815[0.001,0.5]
Interaction: 11992/20016 Out of bounds for computation -> 2.75022[0.001,0.5]
11993
11994
11995
Interaction: 11996/20016 Out of bounds for computation -> 1.42609[0.001,0.5]
Interaction: 11997/20016 Out of bounds for computation -> 1.45466[0.001,0.5]
Interaction: 11998/20016 Out of bounds for computation -> 1.49242[0.001,0.5]
Interaction: 11999/20016 Out of bounds for computation -> 0.514178[0.001,0.5]
Interaction: 12000/20016 Out of bounds for computation -> 1.67886[0.001,0.5]
12001
12002
12003
Interaction: 12004/20016 Out of bounds for computation -> 1.45673[0.001,0.5]
Interaction: 12005/20016 Out of bounds for computation -> 2.01647[0.001,0.5]
Interaction: 12006/20016 Out of bounds for computation -> 0.714596[0.001,0.5]
12007
12008
12009
12010
12011
Interaction: 12012/20016 Out of bounds for computation -> 2.63693[0.001,0.5]
Interaction: 12013/20016 Out of bounds for computation -> 1.61387[0.001,0.5]
Interaction: 12014/20016 Out of bounds for computation -> 2.16287[0.001,0.5]
12015
Interaction: 12016/20016 Out of bounds for computation -> 1.04432[0.001,0.5]
12017
Interaction: 12018/20016 Out of bounds for computation -> 0.746045[0.001,0.5]
Interaction: 12019/20016 Out of bounds for computation -> 2.70845[0.001,0.5]
Interaction: 12020/20016 Out of bounds for computation -> 1.21777[0.001,0.5]
12021
Interaction: 12022/20016 Out of bounds for computation -> 1.5189[0.001,0.5]
Interaction: 12023/20016 Out of bounds for computation -> 0.801389[0.001,0.5]
12024
Interaction: 12025/20016 Out of bounds for computation -> 1.65169[0.001,0.5]
12026
12027
12028
Interaction: 12029/20016 Out of bounds for computation -> 2.73016[0.001,0.5]
12030
Interaction: 12031/20016 Out of bounds for computation -> 2.6557[0.001,0.5]
Interaction: 12032/20016 Out of bounds for computation -> 0.537377[0.001,0.5]
12033
Interaction: 12034/20016 Out of bounds for computation -> 2.00326[0.001,0.5]
12035
12036
12037
Interaction: 12038/20016 Out of bounds for computation -> 2.24663[0.001,0.5]
12039
Interaction: 12040/20016 Out of bounds for computation -> 2.79062[0.001,0.5]
Interaction: 12041/20016 Out of bounds for computation -> 2.29262[0.001,0.5]
12042
12043
Interaction: 12044/20016 Out of bounds for computation -> 2.2245[0.001,0.5]
12045
Interaction: 12046/20016 Out of bounds for computation -> 2.56717[0.001,0.5]
12047
12048
12049
12050
12051
Interaction: 12052/20016 Out of bounds for computation -> 0.7002[0.001,0.5]
Interaction: 12053/20016 Out of bounds for computation -> 2.13363[0.001,0.5]
Interaction: 12054/20016 Out of bounds for computation -> 2.74214[0.001,0.5]
12055
Interaction: 12056/20016 Out of bounds for computation -> 0.855771[0.001,0.5]
12057
12058
Interaction: 12059/20016 Out of bounds for computation -> 0.639173[0.001,0.5]
12060
12061
12062
12063
12064
Interaction: 12065/20016 Out of bounds for computation -> 2.17669[0.001,0.5]
12066
12067
12068
Interaction: 12069/20016 Out of bounds for computation -> 2.87171[0.001,0.5]
Interaction: 12070/20016 Out of bounds for computation -> 2.27623[0.001,0.5]
Interaction: 12071/20016 Out of bounds for computation -> 0.587237[0.001,0.5]
Interaction: 12072/20016 Out of bounds for computation -> 0.759028[0.001,0.5]
12073
12074
12075
12076
Interaction: 12077/20016 Out of bounds for computation -> 2.71592[0.001,0.5]
Interaction: 12078/20016 Out of bounds for computation -> 0.908757[0.001,0.5]
12079
Interaction: 12080/20016 Out of bounds for computation -> 1.25065[0.001,0.5]
Interaction: 12081/20016 Out of bounds for computation -> 0.642187[0.001,0.5]
12082
Interaction: 12083/20016 Out of bounds for computation -> 2.79973[0.001,0.5]
Interaction: 12084/20016 Out of bounds for computation -> 1.52471[0.001,0.5]
12085
12086
12087
12088
Interaction: 12089/20016 Out of bounds for computation -> 0.894674[0.001,0.5]
Interaction: 12090/20016 Out of bounds for computation -> 0.716489[0.001,0.5]
12091
12092
12093
Interaction: 12094/20016 Out of bounds for computation -> 1.4875[0.001,0.5]
12095
Interaction: 12096/20016 Out of bounds for computation -> 2.45358[0.001,0.5]
12097
12098
12099
12100
12101
12102
12103
12104
12105
Interaction: 12106/20016 Out of bounds for computation -> 0.941277[0.001,0.5]
12107
Interaction: 12108/20016 Out of bounds for computation -> 0.559613[0.001,0.5]
12109
12110
12111
12112
12113
Interaction: 12114/20016 Out of bounds for computation -> 2.01995[0.001,0.5]
12115
Interaction: 12116/20016 Out of bounds for computation -> 2.35184[0.001,0.5]
12117
12118
Interaction: 12119/20016 Out of bounds for computation -> 1.48524[0.001,0.5]
12120
Interaction: 12121/20016 Out of bounds for computation -> 0.654093[0.001,0.5]
12122
Interaction: 12123/20016 Out of bounds for computation -> 2.26592[0.001,0.5]
Interaction: 12124/20016 Out of bounds for computation -> 1.61183[0.001,0.5]
12125
12126
12127
12128
Interaction: 12129/20016 Out of bounds for computation -> 0.963068[0.001,0.5]
Interaction: 12130/20016 Out of bounds for computation -> 2.02414[0.001,0.5]
12131
12132
12133
12134
12135
Interaction: 12136/20016 Out of bounds for computation -> 2.54857[0.001,0.5]
Interaction: 12137/20016 Out of bounds for computation -> 1.47497[0.001,0.5]
12138
Interaction: 12139/20016 Out of bounds for computation -> 0.728806[0.001,0.5]
12140
12141
12142
Interaction: 12143/20016 Out of bounds for computation -> 1.4373[0.001,0.5]
Interaction: 12144/20016 Out of bounds for computation -> 1.70577[0.001,0.5]
12145
Interaction: 12146/20016 Out of bounds for computation -> 1.45036[0.001,0.5]
Interaction: 12147/20016 Out of bounds for computation -> 0.62552[0.001,0.5]
Interaction: 12148/20016 Out of bounds for computation -> 0.908287[0.001,0.5]
12149
12150
Interaction: 12151/20016 Out of bounds for computation -> 0.525026[0.001,0.5]
12152
Interaction: 12153/20016 Out of bounds for computation -> 0.704145[0.001,0.5]
12154
12155
Interaction: 12156/20016 Out of bounds for computation -> 0.593017[0.001,0.5]
Interaction: 12157/20016 Out of bounds for computation -> 1.79064[0.001,0.5]
12158
12159
12160
12161
Interaction: 12162/20016 Out of bounds for computation -> 0.821765[0.001,0.5]
Interaction: 12163/20016 Out of bounds for computation -> 1.49725[0.001,0.5]
12164
Interaction: 12165/20016 Out of bounds for computation -> 1.44011[0.001,0.5]
12166
Interaction: 12167/20016 Out of bounds for computation -> 2.3973[0.001,0.5]
12168
Interaction: 12169/20016 Out of bounds for computation -> 0.9173[0.001,0.5]
12170
12171
Interaction: 12172/20016 Out of bounds for computation -> 2.84416[0.001,0.5]
Interaction: 12173/20016 Out of bounds for computation -> 0.697767[0.001,0.5]
12174
12175
12176
12177
Interaction: 12178/20016 Out of bounds for computation -> 2.6237[0.001,0.5]
12179
Interaction: 12180/20016 Out of bounds for computation -> 0.654794[0.001,0.5]
12181
Interaction: 12182/20016 Out of bounds for computation -> 0.881558[0.001,0.5]
12183
12184
Interaction: 12185/20016 Out of bounds for computation -> 2.75544[0.001,0.5]
Interaction: 12186/20016 Out of bounds for computation -> 0.905451[0.001,0.5]
12187
12188
12189
12190
12191
Interaction: 12192/20016 Out of bounds for computation -> 1.69888[0.001,0.5]
Interaction: 12193/20016 Out of bounds for computation -> 0.512593[0.001,0.5]
Interaction: 12194/20016 Out of bounds for computation -> 0.842113[0.001,0.5]
12195
Interaction: 12196/20016 Out of bounds for computation -> 0.738585[0.001,0.5]
Interaction: 12197/20016 Out of bounds for computation -> 1.17081[0.001,0.5]
Interaction: 12198/20016 Out of bounds for computation -> 0.535109[0.001,0.5]
12199
Interaction: 12200/20016 Out of bounds for computation -> 0.714323[0.001,0.5]
12201
12202
12203
12204
12205
Interaction: 12206/20016 Out of bounds for computation -> 1.48297[0.001,0.5]
Interaction: 12207/20016 Out of bounds for computation -> 2.64146[0.001,0.5]
12208
12209
12210
Interaction: 12211/20016 Out of bounds for computation -> 1.53901[0.001,0.5]
Interaction: 12212/20016 Out of bounds for computation -> 0.821986[0.001,0.5]
Interaction: 12213/20016 Out of bounds for computation -> 2.34763[0.001,0.5]
Interaction: 12214/20016 Out of bounds for computation -> 2.37255[0.001,0.5]
12215
12216
Interaction: 12217/20016 Out of bounds for computation -> 0.972087[0.001,0.5]
Interaction: 12218/20016 Out of bounds for computation -> 2.31512[0.001,0.5]
Interaction: 12219/20016 Out of bounds for computation -> 0.786457[0.001,0.5]
12220
12221
Interaction: 12222/20016 Out of bounds for computation -> 1.03366[0.001,0.5]
Interaction: 12223/20016 Out of bounds for computation -> 0.762413[0.001,0.5]
12224
12225
12226
12227
Interaction: 12228/20016 Out of bounds for computation -> 0.619469[0.001,0.5]
Interaction: 12229/20016 Out of bounds for computation -> 2.01298[0.001,0.5]
Interaction: 12230/20016 Out of bounds for computation -> 0.940834[0.001,0.5]
12231
Interaction: 12232/20016 Out of bounds for computation -> 1.51498[0.001,0.5]
Interaction: 12233/20016 Out of bounds for computation -> 0.529175[0.001,0.5]
12234
Interaction: 12235/20016 Out of bounds for computation -> 1.80165[0.001,0.5]
12236
12237
12238
12239
Interaction: 12240/20016 Out of bounds for computation -> 0.569561[0.001,0.5]
12241
12242
Interaction: 12243/20016 Out of bounds for computation -> 1.24731[0.001,0.5]
12244
12245
Interaction: 12246/20016 Out of bounds for computation -> 1.64786[0.001,0.5]
Interaction: 12247/20016 Out of bounds for computation -> 1.79462[0.001,0.5]
12248
12249
Interaction: 12250/20016 Out of bounds for computation -> 2.33708[0.001,0.5]
12251
Interaction: 12252/20016 Out of bounds for computation -> 1.61135[0.001,0.5]
12253
12254
12255
Interaction: 12256/20016 Out of bounds for computation -> 0.728298[0.001,0.5]
12257
12258
Interaction: 12259/20016 Out of bounds for computation -> 2.79769[0.001,0.5]
Interaction: 12260/20016 Out of bounds for computation -> 1.49753[0.001,0.5]
12261
Interaction: 12262/20016 Out of bounds for computation -> 1.42378[0.001,0.5]
12263
12264
12265
Interaction: 12266/20016 Out of bounds for computation -> 0.693896[0.001,0.5]
12267
12268
12269
12270
12271
Interaction: 12272/20016 Out of bounds for computation -> 0.641922[0.001,0.5]
Interaction: 12273/20016 Out of bounds for computation -> 1.07366[0.001,0.5]
Interaction: 12274/20016 Out of bounds for computation -> 0.686612[0.001,0.5]
Interaction: 12275/20016 Out of bounds for computation -> 2.22653[0.001,0.5]
Interaction: 12276/20016 Out of bounds for computation -> 0.796744[0.001,0.5]
12277
12278
12279
Interaction: 12280/20016 Out of bounds for computation -> 1.47965[0.001,0.5]
12281
Interaction: 12282/20016 Out of bounds for computation -> 1.08063[0.001,0.5]
12283
12284
12285
Interaction: 12286/20016 Out of bounds for computation -> 0.81419[0.001,0.5]
12287
Interaction: 12288/20016 Out of bounds for computation -> 0.692843[0.001,0.5]
12289
12290
Interaction: 12291/20016 Out of bounds for computation -> 1.42018[0.001,0.5]
12292
Interaction: 12293/20016 Out of bounds for computation -> 1.30746[0.001,0.5]
12294
12295
Interaction: 12296/20016 Out of bounds for computation -> 0.52911[0.001,0.5]
12297
12298
12299
12300
Interaction: 12301/20016 Out of bounds for computation -> 2.03547[0.001,0.5]
12302
12303
12304
Interaction: 12305/20016 Out of bounds for computation -> 2.68432[0.001,0.5]
12306
Interaction: 12307/20016 Out of bounds for computation -> 0.702459[0.001,0.5]
12308
12309
12310
12311
Interaction: 12312/20016 Out of bounds for computation -> 1.38261[0.001,0.5]
Interaction: 12313/20016 Out of bounds for computation -> 0.70198[0.001,0.5]
12314
12315
Interaction: 12316/20016 Out of bounds for computation -> 0.787712[0.001,0.5]
12317
Interaction: 12318/20016 Out of bounds for computation -> 0.81076[0.001,0.5]
12319
12320
12321
12322
12323
12324
Interaction: 12325/20016 Out of bounds for computation -> 0.564515[0.001,0.5]
Interaction: 12326/20016 Out of bounds for computation -> 1.54109[0.001,0.5]
12327
12328
Interaction: 12329/20016 Out of bounds for computation -> 1.40744[0.001,0.5]
12330
Interaction: 12331/20016 Out of bounds for computation -> 1.0187[0.001,0.5]
Interaction: 12332/20016 Out of bounds for computation -> 2.86638[0.001,0.5]
12333
12334
Interaction: 12335/20016 Out of bounds for computation -> 1.52063[0.001,0.5]
Interaction: 12336/20016 Out of bounds for computation -> 2.08246[0.001,0.5]
12337
12338
12339
12340
Interaction: 12341/20016 Out of bounds for computation -> 1.96794[0.001,0.5]
Interaction: 12342/20016 Out of bounds for computation -> 2.17903[0.001,0.5]
12343
12344
12345
12346
12347
12348
Interaction: 12349/20016 Out of bounds for computation -> 0.612914[0.001,0.5]
12350
12351
12352
12353
12354
12355
12356
Interaction: 12357/20016 Out of bounds for computation -> 1.46421[0.001,0.5]
Interaction: 12358/20016 Out of bounds for computation -> 2.33486[0.001,0.5]
12359
Interaction: 12360/20016 Out of bounds for computation -> 0.898064[0.001,0.5]
Interaction: 12361/20016 Out of bounds for computation -> 2.82782[0.001,0.5]
12362
Interaction: 12363/20016 Out of bounds for computation -> 0.577158[0.001,0.5]
12364
12365
12366
12367
Interaction: 12368/20016 Out of bounds for computation -> 1.75125[0.001,0.5]
Interaction: 12369/20016 Out of bounds for computation -> 0.60647[0.001,0.5]
12370
Interaction: 12371/20016 Out of bounds for computation -> 1.3699[0.001,0.5]
12372
Interaction: 12373/20016 Out of bounds for computation -> 1.96869[0.001,0.5]
12374
12375
12376
Interaction: 12377/20016 Out of bounds for computation -> 0.58451[0.001,0.5]
Interaction: 12378/20016 Out of bounds for computation -> 1.467[0.001,0.5]
Interaction: 12379/20016 Out of bounds for computation -> 0.688247[0.001,0.5]
12380
12381
Interaction: 12382/20016 Out of bounds for computation -> 1.55594[0.001,0.5]
12383
Interaction: 12384/20016 Out of bounds for computation -> 2.26972[0.001,0.5]
12385
Interaction: 12386/20016 Out of bounds for computation -> 1.77552[0.001,0.5]
12387
12388
Interaction: 12389/20016 Out of bounds for computation -> 2.57068[0.001,0.5]
12390
Interaction: 12391/20016 Out of bounds for computation -> 1.02797[0.001,0.5]
12392
Interaction: 12393/20016 Out of bounds for computation -> 2.75287[0.001,0.5]
Interaction: 12394/20016 Out of bounds for computation -> 0.579182[0.001,0.5]
12395
12396
12397
Interaction: 12398/20016 Out of bounds for computation -> 2.11572[0.001,0.5]
12399
12400
12401
Interaction: 12402/20016 Out of bounds for computation -> 0.5298[0.001,0.5]
Interaction: 12403/20016 Out of bounds for computation -> 2.69579[0.001,0.5]
Interaction: 12404/20016 Out of bounds for computation -> 0.741919[0.001,0.5]
Interaction: 12405/20016 Out of bounds for computation -> 0.729253[0.001,0.5]
Interaction: 12406/20016 Out of bounds for computation -> 0.734555[0.001,0.5]
12407
Interaction: 12408/20016 Out of bounds for computation -> 0.950779[0.001,0.5]
Interaction: 12409/20016 Out of bounds for computation -> 0.622056[0.001,0.5]
12410
12411
12412
12413
12414
Interaction: 12415/20016 Out of bounds for computation -> 1.50501[0.001,0.5]
12416
12417
Interaction: 12418/20016 Out of bounds for computation -> 0.545692[0.001,0.5]
12419
12420
12421
12422
Interaction: 12423/20016 Out of bounds for computation -> 2.24226[0.001,0.5]
12424
Interaction: 12425/20016 Out of bounds for computation -> 0.634588[0.001,0.5]
Interaction: 12426/20016 Out of bounds for computation -> 1.44897[0.001,0.5]
12427
12428
12429
12430
12431
Interaction: 12432/20016 Out of bounds for computation -> 2.00534[0.001,0.5]
12433
12434
12435
12436
Interaction: 12437/20016 Out of bounds for computation -> 1.01067[0.001,0.5]
12438
Interaction: 12439/20016 Out of bounds for computation -> 0.642407[0.001,0.5]
12440
12441
Interaction: 12442/20016 Out of bounds for computation -> 1.2861[0.001,0.5]
Interaction: 12443/20016 Out of bounds for computation -> 2.84234[0.001,0.5]
12444
12445
Interaction: 12446/20016 Out of bounds for computation -> 0.770872[0.001,0.5]
Interaction: 12447/20016 Out of bounds for computation -> 1.46591[0.001,0.5]
12448
Interaction: 12449/20016 Out of bounds for computation -> 2.28408[0.001,0.5]
Interaction: 12450/20016 Out of bounds for computation -> 0.504496[0.001,0.5]
12451
12452
12453
12454
12455
12456
12457
12458
12459
Interaction: 12460/20016 Out of bounds for computation -> 0.644715[0.001,0.5]
12461
Interaction: 12462/20016 Out of bounds for computation -> 0.583048[0.001,0.5]
12463
Interaction: 12464/20016 Out of bounds for computation -> 0.500875[0.001,0.5]
Interaction: 12465/20016 Out of bounds for computation -> 1.92064[0.001,0.5]
Interaction: 12466/20016 Out of bounds for computation -> 1.32248[0.001,0.5]
Interaction: 12467/20016 Out of bounds for computation -> 1.49036[0.001,0.5]
12468
12469
12470
Interaction: 12471/20016 Out of bounds for computation -> 2.22697[0.001,0.5]
Interaction: 12472/20016 Out of bounds for computation -> 0.838893[0.001,0.5]
Interaction: 12473/20016 Out of bounds for computation -> 0.815797[0.001,0.5]
12474
Interaction: 12475/20016 Out of bounds for computation -> 0.681247[0.001,0.5]
12476
12477
12478
Interaction: 12479/20016 Out of bounds for computation -> 0.603784[0.001,0.5]
12480
12481
12482
Interaction: 12483/20016 Out of bounds for computation -> 0.695534[0.001,0.5]
12484
Interaction: 12485/20016 Out of bounds for computation -> 2.20989[0.001,0.5]
12486
Interaction: 12487/20016 Out of bounds for computation -> 1.59993[0.001,0.5]
Interaction: 12488/20016 Out of bounds for computation -> 1.8054[0.001,0.5]
12489
12490
Interaction: 12491/20016 Out of bounds for computation -> 0.693325[0.001,0.5]
12492
12493
12494
Interaction: 12495/20016 Out of bounds for computation -> 0.560354[0.001,0.5]
Interaction: 12496/20016 Out of bounds for computation -> 2.55386[0.001,0.5]
Interaction: 12497/20016 Out of bounds for computation -> 1.17315[0.001,0.5]
12498
12499
12500
Interaction: 12501/20016 Out of bounds for computation -> 0.910528[0.001,0.5]
12502
Interaction: 12503/20016 Out of bounds for computation -> 0.708659[0.001,0.5]
12504
Interaction: 12505/20016 Out of bounds for computation -> 2.63506[0.001,0.5]
Interaction: 12506/20016 Out of bounds for computation -> 0.848269[0.001,0.5]
12507
12508
Interaction: 12509/20016 Out of bounds for computation -> 0.870127[0.001,0.5]
Interaction: 12510/20016 Out of bounds for computation -> 0.769732[0.001,0.5]
Interaction: 12511/20016 Out of bounds for computation -> 0.649427[0.001,0.5]
12512
12513
12514
Interaction: 12515/20016 Out of bounds for computation -> 2.06089[0.001,0.5]
Interaction: 12516/20016 Out of bounds for computation -> 1.5175[0.001,0.5]
Interaction: 12517/20016 Out of bounds for computation -> 2.43874[0.001,0.5]
12518
Interaction: 12519/20016 Out of bounds for computation -> 2.82408[0.001,0.5]
12520
12521
12522
Interaction: 12523/20016 Out of bounds for computation -> 0.819264[0.001,0.5]
12524
12525
12526
Interaction: 12527/20016 Out of bounds for computation -> 2.82612[0.001,0.5]
12528
12529
12530
12531
12532
Interaction: 12533/20016 Out of bounds for computation -> 0.673932[0.001,0.5]
Interaction: 12534/20016 Out of bounds for computation -> 0.658651[0.001,0.5]
12535
Interaction: 12536/20016 Out of bounds for computation -> 1.49998[0.001,0.5]
12537
12538
12539
12540
12541
Interaction: 12542/20016 Out of bounds for computation -> 1.08909[0.001,0.5]
12543
12544
Interaction: 12545/20016 Out of bounds for computation -> 2.58549[0.001,0.5]
Interaction: 12546/20016 Out of bounds for computation -> 2.75262[0.001,0.5]
12547
12548
12549
12550
12551
12552
12553
12554
12555
12556
Interaction: 12557/20016 Out of bounds for computation -> 1.46632[0.001,0.5]
12558
12559
12560
12561
12562
12563
Interaction: 12564/20016 Out of bounds for computation -> 2.77691[0.001,0.5]
Interaction: 12565/20016 Out of bounds for computation -> 2.27217[0.001,0.5]
Interaction: 12566/20016 Out of bounds for computation -> 0.525519[0.001,0.5]
12567
Interaction: 12568/20016 Out of bounds for computation -> 1.4446[0.001,0.5]
Interaction: 12569/20016 Out of bounds for computation -> 2.80581[0.001,0.5]
12570
Interaction: 12571/20016 Out of bounds for computation -> 2.33142[0.001,0.5]
12572
12573
Interaction: 12574/20016 Out of bounds for computation -> 2.61521[0.001,0.5]
12575
12576
12577
Interaction: 12578/20016 Out of bounds for computation -> 1.12211[0.001,0.5]
12579
Interaction: 12580/20016 Out of bounds for computation -> 2.44831[0.001,0.5]
Interaction: 12581/20016 Out of bounds for computation -> 0.629[0.001,0.5]
Interaction: 12582/20016 Out of bounds for computation -> 2.57393[0.001,0.5]
Interaction: 12583/20016 Out of bounds for computation -> 2.40676[0.001,0.5]
12584
Interaction: 12585/20016 Out of bounds for computation -> 2.76856[0.001,0.5]
12586
12587
12588
12589
12590
Interaction: 12591/20016 Out of bounds for computation -> 2.01934[0.001,0.5]
12592
12593
12594
12595
12596
12597
12598
12599
12600
12601
12602
Interaction: 12603/20016 Out of bounds for computation -> 0.618492[0.001,0.5]
Interaction: 12604/20016 Out of bounds for computation -> 1.87366[0.001,0.5]
12605
12606
Interaction: 12607/20016 Out of bounds for computation -> 0.595215[0.001,0.5]
Interaction: 12608/20016 Out of bounds for computation -> 2.80749[0.001,0.5]
Interaction: 12609/20016 Out of bounds for computation -> 2.73575[0.001,0.5]
12610
12611
12612
12613
12614
12615
12616
Interaction: 12617/20016 Out of bounds for computation -> 1.47313[0.001,0.5]
12618
Interaction: 12619/20016 Out of bounds for computation -> 2.51309[0.001,0.5]
Interaction: 12620/20016 Out of bounds for computation -> 0.694034[0.001,0.5]
12621
12622
12623
12624
Interaction: 12625/20016 Out of bounds for computation -> 2.09039[0.001,0.5]
12626
12627
12628
12629
Interaction: 12630/20016 Out of bounds for computation -> 0.505445[0.001,0.5]
Interaction: 12631/20016 Out of bounds for computation -> 1.62771[0.001,0.5]
12632
12633
12634
Interaction: 12635/20016 Out of bounds for computation -> 2.20933[0.001,0.5]
12636
12637
Interaction: 12638/20016 Out of bounds for computation -> 2.15742[0.001,0.5]
Interaction: 12639/20016 Out of bounds for computation -> 1.4497[0.001,0.5]
Interaction: 12640/20016 Out of bounds for computation -> 2.10495[0.001,0.5]
12641
Interaction: 12642/20016 Out of bounds for computation -> 0.67517[0.001,0.5]
12643
12644
12645
12646
Interaction: 12647/20016 Out of bounds for computation -> 0.656096[0.001,0.5]
Interaction: 12648/20016 Out of bounds for computation -> 1.21293[0.001,0.5]
12649
12650
Interaction: 12651/20016 Out of bounds for computation -> 0.618183[0.001,0.5]
Interaction: 12652/20016 Out of bounds for computation -> 2.77414[0.001,0.5]
12653
12654
12655
Interaction: 12656/20016 Out of bounds for computation -> 2.42784[0.001,0.5]
12657
12658
Interaction: 12659/20016 Out of bounds for computation -> 2.41889[0.001,0.5]
Interaction: 12660/20016 Out of bounds for computation -> 0.718906[0.001,0.5]
12661
12662
Interaction: 12663/20016 Out of bounds for computation -> 1.2139[0.001,0.5]
12664
12665
12666
12667
12668
Interaction: 12669/20016 Out of bounds for computation -> 0.544862[0.001,0.5]
12670
12671
12672
12673
12674
Interaction: 12675/20016 Out of bounds for computation -> 0.619644[0.001,0.5]
Interaction: 12676/20016 Out of bounds for computation -> 1.97755[0.001,0.5]
12677
Interaction: 12678/20016 Out of bounds for computation -> 0.577266[0.001,0.5]
12679
12680
12681
12682
12683
12684
Interaction: 12685/20016 Out of bounds for computation -> 2.54468[0.001,0.5]
12686
12687
12688
12689
12690
12691
Interaction: 12692/20016 Out of bounds for computation -> 1.21427[0.001,0.5]
Interaction: 12693/20016 Out of bounds for computation -> 0.865116[0.001,0.5]
12694
12695
Interaction: 12696/20016 Out of bounds for computation -> 1.53863[0.001,0.5]
Interaction: 12697/20016 Out of bounds for computation -> 0.799508[0.001,0.5]
12698
Interaction: 12699/20016 Out of bounds for computation -> 1.67656[0.001,0.5]
Interaction: 12700/20016 Out of bounds for computation -> 1.55528[0.001,0.5]
12701
Interaction: 12702/20016 Out of bounds for computation -> 2.29422[0.001,0.5]
Interaction: 12703/20016 Out of bounds for computation -> 2.85146[0.001,0.5]
12704
Interaction: 12705/20016 Out of bounds for computation -> 0.836288[0.001,0.5]
12706
Interaction: 12707/20016 Out of bounds for computation -> 2.19461[0.001,0.5]
Interaction: 12708/20016 Out of bounds for computation -> 1.46056[0.001,0.5]
Interaction: 12709/20016 Out of bounds for computation -> 1.76621[0.001,0.5]
12710
12711
12712
Interaction: 12713/20016 Out of bounds for computation -> 0.628236[0.001,0.5]
12714
12715
12716
Interaction: 12717/20016 Out of bounds for computation -> 0.559232[0.001,0.5]
Interaction: 12718/20016 Out of bounds for computation -> 1.48003[0.001,0.5]
Interaction: 12719/20016 Out of bounds for computation -> 0.6573[0.001,0.5]
12720
Interaction: 12721/20016 Out of bounds for computation -> 1.34729[0.001,0.5]
12722
12723
12724
12725
Interaction: 12726/20016 Out of bounds for computation -> 0.577855[0.001,0.5]
12727
Interaction: 12728/20016 Out of bounds for computation -> 0.552567[0.001,0.5]
Interaction: 12729/20016 Out of bounds for computation -> 1.15248[0.001,0.5]
Interaction: 12730/20016 Out of bounds for computation -> 0.566861[0.001,0.5]
12731
12732
Interaction: 12733/20016 Out of bounds for computation -> 1.69079[0.001,0.5]
12734
Interaction: 12735/20016 Out of bounds for computation -> 0.953985[0.001,0.5]
12736
12737
Interaction: 12738/20016 Out of bounds for computation -> 2.02606[0.001,0.5]
12739
Interaction: 12740/20016 Out of bounds for computation -> 2.43347[0.001,0.5]
12741
12742
Interaction: 12743/20016 Out of bounds for computation -> 0.934734[0.001,0.5]
12744
12745
Interaction: 12746/20016 Out of bounds for computation -> 0.525192[0.001,0.5]
12747
12748
12749
12750
12751
12752
12753
12754
Interaction: 12755/20016 Out of bounds for computation -> 0.612012[0.001,0.5]
12756
Interaction: 12757/20016 Out of bounds for computation -> 0.801219[0.001,0.5]
12758
Interaction: 12759/20016 Out of bounds for computation -> 1.50765[0.001,0.5]
12760
Interaction: 12761/20016 Out of bounds for computation -> 1.46991[0.001,0.5]
Interaction: 12762/20016 Out of bounds for computation -> 1.49694[0.001,0.5]
Interaction: 12763/20016 Out of bounds for computation -> 2.53153[0.001,0.5]
12764
12765
12766
Interaction: 12767/20016 Out of bounds for computation -> 0.554212[0.001,0.5]
Interaction: 12768/20016 Out of bounds for computation -> 2.53964[0.001,0.5]
Interaction: 12769/20016 Out of bounds for computation -> 0.730936[0.001,0.5]
12770
Interaction: 12771/20016 Out of bounds for computation -> 0.545831[0.001,0.5]
12772
12773
12774
12775
Interaction: 12776/20016 Out of bounds for computation -> 1.159[0.001,0.5]
12777
12778
12779
12780
12781
12782
12783
12784
12785
12786
12787
12788
Interaction: 12789/20016 Out of bounds for computation -> 1.18262[0.001,0.5]
Interaction: 12790/20016 Out of bounds for computation -> 2.33134[0.001,0.5]
12791
12792
12793
12794
12795
Interaction: 12796/20016 Out of bounds for computation -> 0.678251[0.001,0.5]
12797
Interaction: 12798/20016 Out of bounds for computation -> 2.19443[0.001,0.5]
12799
12800
12801
Interaction: 12802/20016 Out of bounds for computation -> 1.53508[0.001,0.5]
12803
12804
12805
Interaction: 12806/20016 Out of bounds for computation -> 1.49519[0.001,0.5]
Interaction: 12807/20016 Out of bounds for computation -> 0.801477[0.001,0.5]
12808
Interaction: 12809/20016 Out of bounds for computation -> 1.93376[0.001,0.5]
Interaction: 12810/20016 Out of bounds for computation -> 0.510246[0.001,0.5]
12811
12812
12813
12814
12815
12816
12817
Interaction: 12818/20016 Out of bounds for computation -> 1.95465[0.001,0.5]
12819
12820
12821
12822
Interaction: 12823/20016 Out of bounds for computation -> 1.16724[0.001,0.5]
Interaction: 12824/20016 Out of bounds for computation -> 1.25024[0.001,0.5]
12825
12826
12827
Interaction: 12828/20016 Out of bounds for computation -> 2.73697[0.001,0.5]
12829
Interaction: 12830/20016 Out of bounds for computation -> 1.97005[0.001,0.5]
Interaction: 12831/20016 Out of bounds for computation -> 1.03158[0.001,0.5]
12832
Interaction: 12833/20016 Out of bounds for computation -> 0.877372[0.001,0.5]
Interaction: 12834/20016 Out of bounds for computation -> 1.579[0.001,0.5]
Interaction: 12835/20016 Out of bounds for computation -> 0.892282[0.001,0.5]
Interaction: 12836/20016 Out of bounds for computation -> 0.580457[0.001,0.5]
12837
Interaction: 12838/20016 Out of bounds for computation -> 2.34198[0.001,0.5]
12839
Interaction: 12840/20016 Out of bounds for computation -> 2.16027[0.001,0.5]
12841
Interaction: 12842/20016 Out of bounds for computation -> 2.23236[0.001,0.5]
12843
12844
Interaction: 12845/20016 Out of bounds for computation -> 1.56547[0.001,0.5]
12846
Interaction: 12847/20016 Out of bounds for computation -> 0.621408[0.001,0.5]
Interaction: 12848/20016 Out of bounds for computation -> 0.765141[0.001,0.5]
12849
Interaction: 12850/20016 Out of bounds for computation -> 1.92296[0.001,0.5]
12851
12852
12853
12854
Interaction: 12855/20016 Out of bounds for computation -> 1.57332[0.001,0.5]
12856
Interaction: 12857/20016 Out of bounds for computation -> 0.649719[0.001,0.5]
12858
12859
12860
Interaction: 12861/20016 Out of bounds for computation -> 0.542007[0.001,0.5]
12862
12863
Interaction: 12864/20016 Out of bounds for computation -> 0.833274[0.001,0.5]
Interaction: 12865/20016 Out of bounds for computation -> 0.580228[0.001,0.5]
Interaction: 12866/20016 Out of bounds for computation -> 2.25234[0.001,0.5]
Interaction: 12867/20016 Out of bounds for computation -> 0.637787[0.001,0.5]
Interaction: 12868/20016 Out of bounds for computation -> 0.81238[0.001,0.5]
Interaction: 12869/20016 Out of bounds for computation -> 2.36218[0.001,0.5]
12870
Interaction: 12871/20016 Out of bounds for computation -> 0.827402[0.001,0.5]
12872
12873
12874
Interaction: 12875/20016 Out of bounds for computation -> 1.52107[0.001,0.5]
12876
12877
12878
Interaction: 12879/20016 Out of bounds for computation -> 1.26053[0.001,0.5]
12880
Interaction: 12881/20016 Out of bounds for computation -> 2.41363[0.001,0.5]
Interaction: 12882/20016 Out of bounds for computation -> 0.68356[0.001,0.5]
12883
Interaction: 12884/20016 Out of bounds for computation -> 0.590189[0.001,0.5]
12885
Interaction: 12886/20016 Out of bounds for computation -> 2.65224[0.001,0.5]
12887
12888
12889
12890
Interaction: 12891/20016 Out of bounds for computation -> 2.47858[0.001,0.5]
Interaction: 12892/20016 Out of bounds for computation -> 0.601108[0.001,0.5]
12893
12894
Interaction: 12895/20016 Out of bounds for computation -> 0.576517[0.001,0.5]
12896
12897
12898
Interaction: 12899/20016 Out of bounds for computation -> 1.70556[0.001,0.5]
Interaction: 12900/20016 Out of bounds for computation -> 1.51425[0.001,0.5]
12901
12902
12903
12904
12905
12906
12907
12908
12909
12910
12911
Interaction: 12912/20016 Out of bounds for computation -> 0.766653[0.001,0.5]
Interaction: 12913/20016 Out of bounds for computation -> 0.553055[0.001,0.5]
Interaction: 12914/20016 Out of bounds for computation -> 0.542621[0.001,0.5]
Interaction: 12915/20016 Out of bounds for computation -> 0.519761[0.001,0.5]
Interaction: 12916/20016 Out of bounds for computation -> 1.51611[0.001,0.5]
Interaction: 12917/20016 Out of bounds for computation -> 1.86237[0.001,0.5]
Interaction: 12918/20016 Out of bounds for computation -> 2.72464[0.001,0.5]
12919
12920
Interaction: 12921/20016 Out of bounds for computation -> 2.21563[0.001,0.5]
12922
Interaction: 12923/20016 Out of bounds for computation -> 1.38106[0.001,0.5]
12924
Interaction: 12925/20016 Out of bounds for computation -> 0.596607[0.001,0.5]
12926
12927
Interaction: 12928/20016 Out of bounds for computation -> 2.32791[0.001,0.5]
12929
12930
12931
12932
Interaction: 12933/20016 Out of bounds for computation -> 2.73983[0.001,0.5]
Interaction: 12934/20016 Out of bounds for computation -> 0.557077[0.001,0.5]
Interaction: 12935/20016 Out of bounds for computation -> 1.31808[0.001,0.5]
12936
Interaction: 12937/20016 Out of bounds for computation -> 2.87225[0.001,0.5]
Interaction: 12938/20016 Out of bounds for computation -> 2.56102[0.001,0.5]
12939
Interaction: 12940/20016 Out of bounds for computation -> 1.4921[0.001,0.5]
12941
Interaction: 12942/20016 Out of bounds for computation -> 0.920657[0.001,0.5]
12943
Interaction: 12944/20016 Out of bounds for computation -> 2.22891[0.001,0.5]
12945
12946
Interaction: 12947/20016 Out of bounds for computation -> 0.827769[0.001,0.5]
12948
12949
Interaction: 12950/20016 Out of bounds for computation -> 0.528437[0.001,0.5]
Interaction: 12951/20016 Out of bounds for computation -> 0.52736[0.001,0.5]
12952
12953
Interaction: 12954/20016 Out of bounds for computation -> 0.65395[0.001,0.5]
12955
Interaction: 12956/20016 Out of bounds for computation -> 0.885629[0.001,0.5]
12957
12958
12959
Interaction: 12960/20016 Out of bounds for computation -> 0.709052[0.001,0.5]
12961
Interaction: 12962/20016 Out of bounds for computation -> 0.602363[0.001,0.5]
Interaction: 12963/20016 Out of bounds for computation -> 1.33162[0.001,0.5]
12964
12965
12966
Interaction: 12967/20016 Out of bounds for computation -> 2.7194[0.001,0.5]
12968
12969
12970
12971
12972
Interaction: 12973/20016 Out of bounds for computation -> 2.43944[0.001,0.5]
12974
Interaction: 12975/20016 Out of bounds for computation -> 1.82782[0.001,0.5]
Interaction: 12976/20016 Out of bounds for computation -> 2.63135[0.001,0.5]
Interaction: 12977/20016 Out of bounds for computation -> 0.589002[0.001,0.5]
12978
Interaction: 12979/20016 Out of bounds for computation -> 0.77281[0.001,0.5]
Interaction: 12980/20016 Out of bounds for computation -> 0.687913[0.001,0.5]
Interaction: 12981/20016 Out of bounds for computation -> 1.91461[0.001,0.5]
12982
Interaction: 12983/20016 Out of bounds for computation -> 0.61793[0.001,0.5]
Interaction: 12984/20016 Out of bounds for computation -> 2.29521[0.001,0.5]
12985
12986
Interaction: 12987/20016 Out of bounds for computation -> 2.24579[0.001,0.5]
Interaction: 12988/20016 Out of bounds for computation -> 2.46648[0.001,0.5]
12989
12990
12991
Interaction: 12992/20016 Out of bounds for computation -> 0.69203[0.001,0.5]
12993
Interaction: 12994/20016 Out of bounds for computation -> 0.618832[0.001,0.5]
12995
12996
12997
Interaction: 12998/20016 Out of bounds for computation -> 1.47562[0.001,0.5]
Interaction: 12999/20016 Out of bounds for computation -> 0.524125[0.001,0.5]
13000
13001
Interaction: 13002/20016 Out of bounds for computation -> 2.28582[0.001,0.5]
Interaction: 13003/20016 Out of bounds for computation -> 0.580774[0.001,0.5]
13004
Interaction: 13005/20016 Out of bounds for computation -> 1.91127[0.001,0.5]
13006
Interaction: 13007/20016 Out of bounds for computation -> 2.40047[0.001,0.5]
13008
13009
Interaction: 13010/20016 Out of bounds for computation -> 2.45721[0.001,0.5]
Interaction: 13011/20016 Out of bounds for computation -> 1.45404[0.001,0.5]
13012
Interaction: 13013/20016 Out of bounds for computation -> 0.565986[0.001,0.5]
13014
Interaction: 13015/20016 Out of bounds for computation -> 2.13468[0.001,0.5]
13016
13017
13018
13019
Interaction: 13020/20016 Out of bounds for computation -> 2.78085[0.001,0.5]
13021
Interaction: 13022/20016 Out of bounds for computation -> 0.518516[0.001,0.5]
13023
Interaction: 13024/20016 Out of bounds for computation -> 0.67739[0.001,0.5]
13025
13026
Interaction: 13027/20016 Out of bounds for computation -> 0.755172[0.001,0.5]
Interaction: 13028/20016 Out of bounds for computation -> 0.632512[0.001,0.5]
13029
13030
13031
13032
13033
Interaction: 13034/20016 Out of bounds for computation -> 1.79754[0.001,0.5]
Interaction: 13035/20016 Out of bounds for computation -> 2.71237[0.001,0.5]
13036
Interaction: 13037/20016 Out of bounds for computation -> 2.37558[0.001,0.5]
13038
13039
13040
Interaction: 13041/20016 Out of bounds for computation -> 2.45453[0.001,0.5]
13042
13043
Interaction: 13044/20016 Out of bounds for computation -> 1.37487[0.001,0.5]
Interaction: 13045/20016 Out of bounds for computation -> 1.51866[0.001,0.5]
Interaction: 13046/20016 Out of bounds for computation -> 1.83506[0.001,0.5]
13047
13048
13049
Interaction: 13050/20016 Out of bounds for computation -> 0.706227[0.001,0.5]
13051
Interaction: 13052/20016 Out of bounds for computation -> 0.905486[0.001,0.5]
Interaction: 13053/20016 Out of bounds for computation -> 1.45919[0.001,0.5]
Interaction: 13054/20016 Out of bounds for computation -> 2.70693[0.001,0.5]
13055
13056
Interaction: 13057/20016 Out of bounds for computation -> 0.841017[0.001,0.5]
13058
13059
13060
13061
13062
13063
Interaction: 13064/20016 Out of bounds for computation -> 2.54145[0.001,0.5]
13065
Interaction: 13066/20016 Out of bounds for computation -> 2.60325[0.001,0.5]
Interaction: 13067/20016 Out of bounds for computation -> 1.50244[0.001,0.5]
13068
13069
13070
Interaction: 13071/20016 Out of bounds for computation -> 2.37785[0.001,0.5]
13072
Interaction: 13073/20016 Out of bounds for computation -> 1.75267[0.001,0.5]
Interaction: 13074/20016 Out of bounds for computation -> 2.37805[0.001,0.5]
Interaction: 13075/20016 Out of bounds for computation -> 1.99029[0.001,0.5]
Interaction: 13076/20016 Out of bounds for computation -> 0.983295[0.001,0.5]
13077
13078
Interaction: 13079/20016 Out of bounds for computation -> 2.41697[0.001,0.5]
13080
Interaction: 13081/20016 Out of bounds for computation -> 0.64674[0.001,0.5]
13082
13083
13084
13085
Interaction: 13086/20016 Out of bounds for computation -> 1.48111[0.001,0.5]
13087
13088
Interaction: 13089/20016 Out of bounds for computation -> 0.904943[0.001,0.5]
13090
Interaction: 13091/20016 Out of bounds for computation -> 0.554798[0.001,0.5]
13092
13093
Interaction: 13094/20016 Out of bounds for computation -> 1.91085[0.001,0.5]
13095
Interaction: 13096/20016 Out of bounds for computation -> 1.94568[0.001,0.5]
Interaction: 13097/20016 Out of bounds for computation -> 2.59226[0.001,0.5]
Interaction: 13098/20016 Out of bounds for computation -> 1.92065[0.001,0.5]
13099
Interaction: 13100/20016 Out of bounds for computation -> 2.21756[0.001,0.5]
13101
Interaction: 13102/20016 Out of bounds for computation -> 1.045[0.001,0.5]
13103
Interaction: 13104/20016 Out of bounds for computation -> 1.18492[0.001,0.5]
Interaction: 13105/20016 Out of bounds for computation -> 0.54115[0.001,0.5]
Interaction: 13106/20016 Out of bounds for computation -> 0.835199[0.001,0.5]
Interaction: 13107/20016 Out of bounds for computation -> 0.675773[0.001,0.5]
Interaction: 13108/20016 Out of bounds for computation -> 0.67131[0.001,0.5]
13109
13110
Interaction: 13111/20016 Out of bounds for computation -> 0.678316[0.001,0.5]
Interaction: 13112/20016 Out of bounds for computation -> 0.646625[0.001,0.5]
Interaction: 13113/20016 Out of bounds for computation -> 2.77652[0.001,0.5]
13114
Interaction: 13115/20016 Out of bounds for computation -> 1.78704[0.001,0.5]
13116
Interaction: 13117/20016 Out of bounds for computation -> 0.778555[0.001,0.5]
Interaction: 13118/20016 Out of bounds for computation -> 0.765303[0.001,0.5]
13119
Interaction: 13120/20016 Out of bounds for computation -> 0.754606[0.001,0.5]
Interaction: 13121/20016 Out of bounds for computation -> 0.754765[0.001,0.5]
13122
13123
13124
Interaction: 13125/20016 Out of bounds for computation -> 0.785174[0.001,0.5]
Interaction: 13126/20016 Out of bounds for computation -> 2.51457[0.001,0.5]
Interaction: 13127/20016 Out of bounds for computation -> 0.754447[0.001,0.5]
Interaction: 13128/20016 Out of bounds for computation -> 2.13827[0.001,0.5]
13129
Interaction: 13130/20016 Out of bounds for computation -> 0.603534[0.001,0.5]
13131
Interaction: 13132/20016 Out of bounds for computation -> 0.84078[0.001,0.5]
13133
Interaction: 13134/20016 Out of bounds for computation -> 0.591045[0.001,0.5]
13135
13136
Interaction: 13137/20016 Out of bounds for computation -> 2.29559[0.001,0.5]
Interaction: 13138/20016 Out of bounds for computation -> 0.610347[0.001,0.5]
Interaction: 13139/20016 Out of bounds for computation -> 0.624155[0.001,0.5]
Interaction: 13140/20016 Out of bounds for computation -> 1.57814[0.001,0.5]
13141
Interaction: 13142/20016 Out of bounds for computation -> 1.99202[0.001,0.5]
Interaction: 13143/20016 Out of bounds for computation -> 2.73702[0.001,0.5]
Interaction: 13144/20016 Out of bounds for computation -> 1.20669[0.001,0.5]
13145
13146
Interaction: 13147/20016 Out of bounds for computation -> 0.726874[0.001,0.5]
13148
Interaction: 13149/20016 Out of bounds for computation -> 0.608232[0.001,0.5]
13150
Interaction: 13151/20016 Out of bounds for computation -> 0.777278[0.001,0.5]
13152
Interaction: 13153/20016 Out of bounds for computation -> 1.99997[0.001,0.5]
13154
Interaction: 13155/20016 Out of bounds for computation -> 1.66553[0.001,0.5]
13156
13157
Interaction: 13158/20016 Out of bounds for computation -> 2.62378[0.001,0.5]
13159
Interaction: 13160/20016 Out of bounds for computation -> 0.673657[0.001,0.5]
13161
13162
13163
Interaction: 13164/20016 Out of bounds for computation -> 2.3658[0.001,0.5]
13165
Interaction: 13166/20016 Out of bounds for computation -> 0.537219[0.001,0.5]
13167
13168
Interaction: 13169/20016 Out of bounds for computation -> 0.852061[0.001,0.5]
13170
13171
Interaction: 13172/20016 Out of bounds for computation -> 2.21152[0.001,0.5]
13173
13174
Interaction: 13175/20016 Out of bounds for computation -> 1.11918[0.001,0.5]
13176
Interaction: 13177/20016 Out of bounds for computation -> 2.52496[0.001,0.5]
13178
Interaction: 13179/20016 Out of bounds for computation -> 2.42565[0.001,0.5]
Interaction: 13180/20016 Out of bounds for computation -> 0.501224[0.001,0.5]
13181
13182
Interaction: 13183/20016 Out of bounds for computation -> 1.45018[0.001,0.5]
13184
Interaction: 13185/20016 Out of bounds for computation -> 2.27349[0.001,0.5]
Interaction: 13186/20016 Out of bounds for computation -> 0.503647[0.001,0.5]
13187
13188
13189
Interaction: 13190/20016 Out of bounds for computation -> 2.6356[0.001,0.5]
Interaction: 13191/20016 Out of bounds for computation -> 0.50773[0.001,0.5]
Interaction: 13192/20016 Out of bounds for computation -> 0.587868[0.001,0.5]
13193
13194
13195
13196
13197
13198
Interaction: 13199/20016 Out of bounds for computation -> 1.85906[0.001,0.5]
Interaction: 13200/20016 Out of bounds for computation -> 1.76205[0.001,0.5]
Interaction: 13201/20016 Out of bounds for computation -> 2.73637[0.001,0.5]
13202
Interaction: 13203/20016 Out of bounds for computation -> 1.16648[0.001,0.5]
Interaction: 13204/20016 Out of bounds for computation -> 0.67365[0.001,0.5]
Interaction: 13205/20016 Out of bounds for computation -> 0.947246[0.001,0.5]
Interaction: 13206/20016 Out of bounds for computation -> 2.50064[0.001,0.5]
13207
Interaction: 13208/20016 Out of bounds for computation -> 1.42238[0.001,0.5]
13209
Interaction: 13210/20016 Out of bounds for computation -> 1.98366[0.001,0.5]
Interaction: 13211/20016 Out of bounds for computation -> 0.628677[0.001,0.5]
Interaction: 13212/20016 Out of bounds for computation -> 0.637869[0.001,0.5]
Interaction: 13213/20016 Out of bounds for computation -> 1.51814[0.001,0.5]
13214
Interaction: 13215/20016 Out of bounds for computation -> 2.51661[0.001,0.5]
Interaction: 13216/20016 Out of bounds for computation -> 1.54782[0.001,0.5]
13217
Interaction: 13218/20016 Out of bounds for computation -> 2.33987[0.001,0.5]
13219
13220
Interaction: 13221/20016 Out of bounds for computation -> 2.65403[0.001,0.5]
13222
13223
Interaction: 13224/20016 Out of bounds for computation -> 0.678333[0.001,0.5]
13225
Interaction: 13226/20016 Out of bounds for computation -> 2.69482[0.001,0.5]
Interaction: 13227/20016 Out of bounds for computation -> 2.0001[0.001,0.5]
13228
13229
13230
Interaction: 13231/20016 Out of bounds for computation -> 1.43214[0.001,0.5]
13232
Interaction: 13233/20016 Out of bounds for computation -> 0.658106[0.001,0.5]
13234
13235
13236
Interaction: 13237/20016 Out of bounds for computation -> 0.77916[0.001,0.5]
13238
13239
Interaction: 13240/20016 Out of bounds for computation -> 0.505523[0.001,0.5]
13241
13242
13243
Interaction: 13244/20016 Out of bounds for computation -> 1.0983[0.001,0.5]
Interaction: 13245/20016 Out of bounds for computation -> 0.515129[0.001,0.5]
13246
13247
13248
Interaction: 13249/20016 Out of bounds for computation -> 2.52668[0.001,0.5]
13250
13251
13252
13253
Interaction: 13254/20016 Out of bounds for computation -> 1.58144[0.001,0.5]
13255
Interaction: 13256/20016 Out of bounds for computation -> 2.38539[0.001,0.5]
Interaction: 13257/20016 Out of bounds for computation -> 2.0538[0.001,0.5]
13258
13259
13260
Interaction: 13261/20016 Out of bounds for computation -> 2.7876[0.001,0.5]
Interaction: 13262/20016 Out of bounds for computation -> 1.25646[0.001,0.5]
13263
13264
Interaction: 13265/20016 Out of bounds for computation -> 0.63334[0.001,0.5]
Interaction: 13266/20016 Out of bounds for computation -> 0.570948[0.001,0.5]
Interaction: 13267/20016 Out of bounds for computation -> 0.785192[0.001,0.5]
Interaction: 13268/20016 Out of bounds for computation -> 1.69958[0.001,0.5]
Interaction: 13269/20016 Out of bounds for computation -> 2.6283[0.001,0.5]
13270
13271
13272
Interaction: 13273/20016 Out of bounds for computation -> 0.614195[0.001,0.5]
13274
13275
Interaction: 13276/20016 Out of bounds for computation -> 2.6068[0.001,0.5]
Interaction: 13277/20016 Out of bounds for computation -> 1.4672[0.001,0.5]
13278
13279
Interaction: 13280/20016 Out of bounds for computation -> 0.596244[0.001,0.5]
13281
13282
Interaction: 13283/20016 Out of bounds for computation -> 0.806789[0.001,0.5]
Interaction: 13284/20016 Out of bounds for computation -> 0.564629[0.001,0.5]
Interaction: 13285/20016 Out of bounds for computation -> 0.654235[0.001,0.5]
Interaction: 13286/20016 Out of bounds for computation -> 1.49465[0.001,0.5]
Interaction: 13287/20016 Out of bounds for computation -> 2.01265[0.001,0.5]
13288
13289
Interaction: 13290/20016 Out of bounds for computation -> 2.36086[0.001,0.5]
13291
Interaction: 13292/20016 Out of bounds for computation -> 1.48579[0.001,0.5]
13293
13294
13295
13296
Interaction: 13297/20016 Out of bounds for computation -> 0.655867[0.001,0.5]
Interaction: 13298/20016 Out of bounds for computation -> 0.779918[0.001,0.5]
Interaction: 13299/20016 Out of bounds for computation -> 1.9792[0.001,0.5]
Interaction: 13300/20016 Out of bounds for computation -> 0.630228[0.001,0.5]
13301
Interaction: 13302/20016 Out of bounds for computation -> 1.45387[0.001,0.5]
Interaction: 13303/20016 Out of bounds for computation -> 0.663943[0.001,0.5]
Interaction: 13304/20016 Out of bounds for computation -> 2.23054[0.001,0.5]
Interaction: 13305/20016 Out of bounds for computation -> 0.663544[0.001,0.5]
13306
13307
13308
13309
Interaction: 13310/20016 Out of bounds for computation -> 1.05779[0.001,0.5]
Interaction: 13311/20016 Out of bounds for computation -> 0.530189[0.001,0.5]
Interaction: 13312/20016 Out of bounds for computation -> 0.604446[0.001,0.5]
13313
13314
Interaction: 13315/20016 Out of bounds for computation -> 2.45104[0.001,0.5]
13316
Interaction: 13317/20016 Out of bounds for computation -> 2.0083[0.001,0.5]
13318
13319
13320
13321
Interaction: 13322/20016 Out of bounds for computation -> 2.0805[0.001,0.5]
Interaction: 13323/20016 Out of bounds for computation -> 0.676561[0.001,0.5]
13324
Interaction: 13325/20016 Out of bounds for computation -> 2.38347[0.001,0.5]
Interaction: 13326/20016 Out of bounds for computation -> 2.64171[0.001,0.5]
Interaction: 13327/20016 Out of bounds for computation -> 1.89871[0.001,0.5]
13328
Interaction: 13329/20016 Out of bounds for computation -> 1.41883[0.001,0.5]
Interaction: 13330/20016 Out of bounds for computation -> 1.69631[0.001,0.5]
13331
Interaction: 13332/20016 Out of bounds for computation -> 1.02615[0.001,0.5]
Interaction: 13333/20016 Out of bounds for computation -> 0.793346[0.001,0.5]
13334
13335
Interaction: 13336/20016 Out of bounds for computation -> 0.53494[0.001,0.5]
13337
13338
Interaction: 13339/20016 Out of bounds for computation -> 2.42166[0.001,0.5]
Interaction: 13340/20016 Out of bounds for computation -> 1.47172[0.001,0.5]
Interaction: 13341/20016 Out of bounds for computation -> 0.666679[0.001,0.5]
13342
Interaction: 13343/20016 Out of bounds for computation -> 2.17884[0.001,0.5]
13344
13345
13346
13347
Interaction: 13348/20016 Out of bounds for computation -> 2.89375[0.001,0.5]
13349
13350
13351
13352
13353
Interaction: 13354/20016 Out of bounds for computation -> 1.46164[0.001,0.5]
Interaction: 13355/20016 Out of bounds for computation -> 1.62254[0.001,0.5]
13356
13357
Interaction: 13358/20016 Out of bounds for computation -> 0.648068[0.001,0.5]
13359
Interaction: 13360/20016 Out of bounds for computation -> 1.57987[0.001,0.5]
13361
13362
13363
Interaction: 13364/20016 Out of bounds for computation -> 1.45238[0.001,0.5]
Interaction: 13365/20016 Out of bounds for computation -> 2.2335[0.001,0.5]
13366
13367
13368
Interaction: 13369/20016 Out of bounds for computation -> 0.538474[0.001,0.5]
Interaction: 13370/20016 Out of bounds for computation -> 0.68944[0.001,0.5]
Interaction: 13371/20016 Out of bounds for computation -> 0.543215[0.001,0.5]
13372
13373
13374
Interaction: 13375/20016 Out of bounds for computation -> 2.43639[0.001,0.5]
13376
13377
13378
Interaction: 13379/20016 Out of bounds for computation -> 2.48543[0.001,0.5]
Interaction: 13380/20016 Out of bounds for computation -> 1.46373[0.001,0.5]
13381
13382
13383
Interaction: 13384/20016 Out of bounds for computation -> 0.573279[0.001,0.5]
13385
13386
13387
13388
13389
13390
13391
13392
Interaction: 13393/20016 Out of bounds for computation -> 2.89071[0.001,0.5]
Interaction: 13394/20016 Out of bounds for computation -> 0.680713[0.001,0.5]
13395
13396
13397
13398
13399
Interaction: 13400/20016 Out of bounds for computation -> 0.63318[0.001,0.5]
13401
13402
Interaction: 13403/20016 Out of bounds for computation -> 0.54448[0.001,0.5]
13404
13405
13406
Interaction: 13407/20016 Out of bounds for computation -> 2.61429[0.001,0.5]
Interaction: 13408/20016 Out of bounds for computation -> 0.742454[0.001,0.5]
13409
13410
13411
13412
13413
Interaction: 13414/20016 Out of bounds for computation -> 0.582323[0.001,0.5]
Interaction: 13415/20016 Out of bounds for computation -> 0.539882[0.001,0.5]
13416
13417
Interaction: 13418/20016 Out of bounds for computation -> 2.4111[0.001,0.5]
13419
13420
13421
13422
13423
13424
13425
13426
Interaction: 13427/20016 Out of bounds for computation -> 0.540613[0.001,0.5]
Interaction: 13428/20016 Out of bounds for computation -> 0.560727[0.001,0.5]
Interaction: 13429/20016 Out of bounds for computation -> 1.84917[0.001,0.5]
Interaction: 13430/20016 Out of bounds for computation -> 1.82503[0.001,0.5]
13431
13432
13433
Interaction: 13434/20016 Out of bounds for computation -> 2.19002[0.001,0.5]
Interaction: 13435/20016 Out of bounds for computation -> 1.11673[0.001,0.5]
Interaction: 13436/20016 Out of bounds for computation -> 1.7181[0.001,0.5]
13437
Interaction: 13438/20016 Out of bounds for computation -> 0.584045[0.001,0.5]
13439
13440
13441
13442
13443
Interaction: 13444/20016 Out of bounds for computation -> 0.53713[0.001,0.5]
13445
13446
13447
13448
Interaction: 13449/20016 Out of bounds for computation -> 1.49359[0.001,0.5]
Interaction: 13450/20016 Out of bounds for computation -> 2.44821[0.001,0.5]
13451
13452
13453
Interaction: 13454/20016 Out of bounds for computation -> 1.13978[0.001,0.5]
13455
Interaction: 13456/20016 Out of bounds for computation -> 1.85435[0.001,0.5]
13457
Interaction: 13458/20016 Out of bounds for computation -> 2.09953[0.001,0.5]
13459
13460
Interaction: 13461/20016 Out of bounds for computation -> 0.685777[0.001,0.5]
13462
13463
13464
13465
Interaction: 13466/20016 Out of bounds for computation -> 1.42138[0.001,0.5]
13467
13468
Interaction: 13469/20016 Out of bounds for computation -> 0.666457[0.001,0.5]
Interaction: 13470/20016 Out of bounds for computation -> 1.76483[0.001,0.5]
13471
13472
13473
13474
Interaction: 13475/20016 Out of bounds for computation -> 2.51277[0.001,0.5]
13476
13477
13478
13479
Interaction: 13480/20016 Out of bounds for computation -> 0.607406[0.001,0.5]
13481
13482
13483
Interaction: 13484/20016 Out of bounds for computation -> 0.771839[0.001,0.5]
13485
13486
Interaction: 13487/20016 Out of bounds for computation -> 1.52804[0.001,0.5]
13488
Interaction: 13489/20016 Out of bounds for computation -> 2.20373[0.001,0.5]
Interaction: 13490/20016 Out of bounds for computation -> 2.15244[0.001,0.5]
Interaction: 13491/20016 Out of bounds for computation -> 2.19784[0.001,0.5]
Interaction: 13492/20016 Out of bounds for computation -> 0.652482[0.001,0.5]
13493
13494
13495
Interaction: 13496/20016 Out of bounds for computation -> 2.6004[0.001,0.5]
13497
13498
13499
Interaction: 13500/20016 Out of bounds for computation -> 1.18621[0.001,0.5]
13501
13502
Interaction: 13503/20016 Out of bounds for computation -> 1.42427[0.001,0.5]
Interaction: 13504/20016 Out of bounds for computation -> 0.584727[0.001,0.5]
Interaction: 13505/20016 Out of bounds for computation -> 2.32463[0.001,0.5]
13506
13507
13508
Interaction: 13509/20016 Out of bounds for computation -> 2.44188[0.001,0.5]
13510
13511
13512
13513
Interaction: 13514/20016 Out of bounds for computation -> 1.1649[0.001,0.5]
13515
Interaction: 13516/20016 Out of bounds for computation -> 0.55977[0.001,0.5]
Interaction: 13517/20016 Out of bounds for computation -> 0.793617[0.001,0.5]
13518
13519
Interaction: 13520/20016 Out of bounds for computation -> 1.46861[0.001,0.5]
Interaction: 13521/20016 Out of bounds for computation -> 1.79628[0.001,0.5]
Interaction: 13522/20016 Out of bounds for computation -> 1.73957[0.001,0.5]
Interaction: 13523/20016 Out of bounds for computation -> 2.53977[0.001,0.5]
13524
Interaction: 13525/20016 Out of bounds for computation -> 0.719966[0.001,0.5]
13526
Interaction: 13527/20016 Out of bounds for computation -> 2.76664[0.001,0.5]
13528
13529
13530
13531
13532
Interaction: 13533/20016 Out of bounds for computation -> 2.33278[0.001,0.5]
13534
13535
Interaction: 13536/20016 Out of bounds for computation -> 2.21477[0.001,0.5]
13537
13538
13539
13540
13541
13542
Interaction: 13543/20016 Out of bounds for computation -> 0.696314[0.001,0.5]
13544
13545
Interaction: 13546/20016 Out of bounds for computation -> 0.568473[0.001,0.5]
13547
13548
13549
13550
13551
13552
Interaction: 13553/20016 Out of bounds for computation -> 2.30285[0.001,0.5]
Interaction: 13554/20016 Out of bounds for computation -> 0.605673[0.001,0.5]
13555
13556
13557
13558
13559
13560
Interaction: 13561/20016 Out of bounds for computation -> 0.754559[0.001,0.5]
Interaction: 13562/20016 Out of bounds for computation -> 1.83667[0.001,0.5]
Interaction: 13563/20016 Out of bounds for computation -> 0.556599[0.001,0.5]
13564
Interaction: 13565/20016 Out of bounds for computation -> 0.661791[0.001,0.5]
13566
Interaction: 13567/20016 Out of bounds for computation -> 2.62394[0.001,0.5]
13568
Interaction: 13569/20016 Out of bounds for computation -> 2.37155[0.001,0.5]
13570
Interaction: 13571/20016 Out of bounds for computation -> 1.2365[0.001,0.5]
13572
13573
Interaction: 13574/20016 Out of bounds for computation -> 0.905237[0.001,0.5]
Interaction: 13575/20016 Out of bounds for computation -> 2.48227[0.001,0.5]
13576
13577
13578
Interaction: 13579/20016 Out of bounds for computation -> 1.8647[0.001,0.5]
13580
13581
Interaction: 13582/20016 Out of bounds for computation -> 0.708431[0.001,0.5]
Interaction: 13583/20016 Out of bounds for computation -> 2.46555[0.001,0.5]
13584
13585
Interaction: 13586/20016 Out of bounds for computation -> 2.52729[0.001,0.5]
13587
13588
Interaction: 13589/20016 Out of bounds for computation -> 2.23596[0.001,0.5]
13590
Interaction: 13591/20016 Out of bounds for computation -> 2.31937[0.001,0.5]
13592
Interaction: 13593/20016 Out of bounds for computation -> 2.52023[0.001,0.5]
13594
13595
13596
Interaction: 13597/20016 Out of bounds for computation -> 0.850718[0.001,0.5]
13598
Interaction: 13599/20016 Out of bounds for computation -> 1.26275[0.001,0.5]
13600
Interaction: 13601/20016 Out of bounds for computation -> 0.537749[0.001,0.5]
13602
13603
13604
Interaction: 13605/20016 Out of bounds for computation -> 0.64855[0.001,0.5]
13606
Interaction: 13607/20016 Out of bounds for computation -> 0.515668[0.001,0.5]
13608
13609
13610
13611
Interaction: 13612/20016 Out of bounds for computation -> 0.529333[0.001,0.5]
13613
Interaction: 13614/20016 Out of bounds for computation -> 2.33409[0.001,0.5]
13615
13616
Interaction: 13617/20016 Out of bounds for computation -> 1.47044[0.001,0.5]
13618
Interaction: 13619/20016 Out of bounds for computation -> 2.64356[0.001,0.5]
13620
13621
13622
Interaction: 13623/20016 Out of bounds for computation -> 1.24291[0.001,0.5]
Interaction: 13624/20016 Out of bounds for computation -> 0.705732[0.001,0.5]
Interaction: 13625/20016 Out of bounds for computation -> 1.31326[0.001,0.5]
Interaction: 13626/20016 Out of bounds for computation -> 0.509592[0.001,0.5]
Interaction: 13627/20016 Out of bounds for computation -> 1.50527[0.001,0.5]
Interaction: 13628/20016 Out of bounds for computation -> 0.737819[0.001,0.5]
Interaction: 13629/20016 Out of bounds for computation -> 2.36937[0.001,0.5]
13630
13631
Interaction: 13632/20016 Out of bounds for computation -> 0.868149[0.001,0.5]
13633
Interaction: 13634/20016 Out of bounds for computation -> 1.69119[0.001,0.5]
Interaction: 13635/20016 Out of bounds for computation -> 0.858025[0.001,0.5]
13636
13637
Interaction: 13638/20016 Out of bounds for computation -> 0.514621[0.001,0.5]
Interaction: 13639/20016 Out of bounds for computation -> 1.56212[0.001,0.5]
13640
13641
Interaction: 13642/20016 Out of bounds for computation -> 1.83824[0.001,0.5]
Interaction: 13643/20016 Out of bounds for computation -> 1.5493[0.001,0.5]
13644
13645
Interaction: 13646/20016 Out of bounds for computation -> 0.531329[0.001,0.5]
13647
13648
13649
Interaction: 13650/20016 Out of bounds for computation -> 0.613309[0.001,0.5]
13651
13652
Interaction: 13653/20016 Out of bounds for computation -> 1.7076[0.001,0.5]
13654
Interaction: 13655/20016 Out of bounds for computation -> 1.30177[0.001,0.5]
13656
13657
Interaction: 13658/20016 Out of bounds for computation -> 0.680484[0.001,0.5]
13659
13660
Interaction: 13661/20016 Out of bounds for computation -> 0.595712[0.001,0.5]
13662
13663
13664
13665
13666
13667
Interaction: 13668/20016 Out of bounds for computation -> 0.781674[0.001,0.5]
13669
Interaction: 13670/20016 Out of bounds for computation -> 2.08276[0.001,0.5]
Interaction: 13671/20016 Out of bounds for computation -> 2.2953[0.001,0.5]
13672
Interaction: 13673/20016 Out of bounds for computation -> 0.515028[0.001,0.5]
Interaction: 13674/20016 Out of bounds for computation -> 0.576566[0.001,0.5]
13675
Interaction: 13676/20016 Out of bounds for computation -> 2.31549[0.001,0.5]
13677
Interaction: 13678/20016 Out of bounds for computation -> 0.652523[0.001,0.5]
13679
13680
Interaction: 13681/20016 Out of bounds for computation -> 0.952124[0.001,0.5]
Interaction: 13682/20016 Out of bounds for computation -> 0.743175[0.001,0.5]
13683
13684
13685
Interaction: 13686/20016 Out of bounds for computation -> 0.739539[0.001,0.5]
Interaction: 13687/20016 Out of bounds for computation -> 1.04708[0.001,0.5]
13688
Interaction: 13689/20016 Out of bounds for computation -> 1.04631[0.001,0.5]
Interaction: 13690/20016 Out of bounds for computation -> 2.13232[0.001,0.5]
Interaction: 13691/20016 Out of bounds for computation -> 2.53129[0.001,0.5]
13692
13693
13694
13695
13696
13697
Interaction: 13698/20016 Out of bounds for computation -> 1.48118[0.001,0.5]
Interaction: 13699/20016 Out of bounds for computation -> 0.763595[0.001,0.5]
13700
13701
13702
Interaction: 13703/20016 Out of bounds for computation -> 1.76593[0.001,0.5]
Interaction: 13704/20016 Out of bounds for computation -> 0.620502[0.001,0.5]
13705
Interaction: 13706/20016 Out of bounds for computation -> 0.642059[0.001,0.5]
Interaction: 13707/20016 Out of bounds for computation -> 1.45326[0.001,0.5]
Interaction: 13708/20016 Out of bounds for computation -> 0.841542[0.001,0.5]
Interaction: 13709/20016 Out of bounds for computation -> 0.615118[0.001,0.5]
Interaction: 13710/20016 Out of bounds for computation -> 0.692108[0.001,0.5]
Interaction: 13711/20016 Out of bounds for computation -> 1.08418[0.001,0.5]
13712
Interaction: 13713/20016 Out of bounds for computation -> 1.30439[0.001,0.5]
Interaction: 13714/20016 Out of bounds for computation -> 0.993333[0.001,0.5]
13715
13716
Interaction: 13717/20016 Out of bounds for computation -> 0.585856[0.001,0.5]
Interaction: 13718/20016 Out of bounds for computation -> 1.2193[0.001,0.5]
13719
13720
13721
13722
Interaction: 13723/20016 Out of bounds for computation -> 2.02134[0.001,0.5]
Interaction: 13724/20016 Out of bounds for computation -> 2.76156[0.001,0.5]
13725
13726
13727
13728
13729
Interaction: 13730/20016 Out of bounds for computation -> 0.714943[0.001,0.5]
Interaction: 13731/20016 Out of bounds for computation -> 1.65867[0.001,0.5]
Interaction: 13732/20016 Out of bounds for computation -> 1.29777[0.001,0.5]
13733
13734
13735
13736
13737
13738
Interaction: 13739/20016 Out of bounds for computation -> 1.17299[0.001,0.5]
13740
Interaction: 13741/20016 Out of bounds for computation -> 2.27987[0.001,0.5]
Interaction: 13742/20016 Out of bounds for computation -> 1.95611[0.001,0.5]
Interaction: 13743/20016 Out of bounds for computation -> 1.25175[0.001,0.5]
Interaction: 13744/20016 Out of bounds for computation -> 0.585766[0.001,0.5]
13745
Interaction: 13746/20016 Out of bounds for computation -> 0.546795[0.001,0.5]
Interaction: 13747/20016 Out of bounds for computation -> 1.71654[0.001,0.5]
13748
Interaction: 13749/20016 Out of bounds for computation -> 1.46977[0.001,0.5]
13750
13751
13752
Interaction: 13753/20016 Out of bounds for computation -> 2.34404[0.001,0.5]
13754
13755
13756
13757
13758
13759
13760
Interaction: 13761/20016 Out of bounds for computation -> 0.561384[0.001,0.5]
13762
Interaction: 13763/20016 Out of bounds for computation -> 0.722806[0.001,0.5]
13764
13765
13766
Interaction: 13767/20016 Out of bounds for computation -> 0.779532[0.001,0.5]
Interaction: 13768/20016 Out of bounds for computation -> 2.52353[0.001,0.5]
13769
13770
Interaction: 13771/20016 Out of bounds for computation -> 2.60274[0.001,0.5]
13772
13773
13774
13775
13776
Interaction: 13777/20016 Out of bounds for computation -> 1.82102[0.001,0.5]
13778
Interaction: 13779/20016 Out of bounds for computation -> 0.90152[0.001,0.5]
13780
13781
13782
Interaction: 13783/20016 Out of bounds for computation -> 1.78251[0.001,0.5]
Interaction: 13784/20016 Out of bounds for computation -> 0.978196[0.001,0.5]
Interaction: 13785/20016 Out of bounds for computation -> 0.743566[0.001,0.5]
13786
13787
13788
13789
13790
Interaction: 13791/20016 Out of bounds for computation -> 0.713689[0.001,0.5]
13792
Interaction: 13793/20016 Out of bounds for computation -> 1.43076[0.001,0.5]
13794
13795
Interaction: 13796/20016 Out of bounds for computation -> 2.2764[0.001,0.5]
13797
13798
13799
13800
13801
13802
13803
13804
13805
Interaction: 13806/20016 Out of bounds for computation -> 1.75842[0.001,0.5]
Interaction: 13807/20016 Out of bounds for computation -> 2.77761[0.001,0.5]
13808
13809
Interaction: 13810/20016 Out of bounds for computation -> 0.74063[0.001,0.5]
13811
13812
13813
Interaction: 13814/20016 Out of bounds for computation -> 0.66116[0.001,0.5]
13815
Interaction: 13816/20016 Out of bounds for computation -> 2.34303[0.001,0.5]
Interaction: 13817/20016 Out of bounds for computation -> 0.8315[0.001,0.5]
13818
13819
13820
Interaction: 13821/20016 Out of bounds for computation -> 1.63479[0.001,0.5]
Interaction: 13822/20016 Out of bounds for computation -> 0.893091[0.001,0.5]
13823
13824
Interaction: 13825/20016 Out of bounds for computation -> 2.10836[0.001,0.5]
13826
Interaction: 13827/20016 Out of bounds for computation -> 1.1956[0.001,0.5]
Interaction: 13828/20016 Out of bounds for computation -> 0.679842[0.001,0.5]
13829
13830
Interaction: 13831/20016 Out of bounds for computation -> 0.59142[0.001,0.5]
13832
Interaction: 13833/20016 Out of bounds for computation -> 0.755491[0.001,0.5]
Interaction: 13834/20016 Out of bounds for computation -> 0.771568[0.001,0.5]
13835
13836
Interaction: 13837/20016 Out of bounds for computation -> 2.79876[0.001,0.5]
13838
13839
Interaction: 13840/20016 Out of bounds for computation -> 1.84423[0.001,0.5]
13841
13842
13843
13844
13845
13846
13847
Interaction: 13848/20016 Out of bounds for computation -> 0.796365[0.001,0.5]
13849
13850
13851
13852
13853
Interaction: 13854/20016 Out of bounds for computation -> 1.23739[0.001,0.5]
13855
13856
13857
13858
Interaction: 13859/20016 Out of bounds for computation -> 0.55401[0.001,0.5]
13860
13861
Interaction: 13862/20016 Out of bounds for computation -> 0.865283[0.001,0.5]
13863
13864
13865
13866
13867
Interaction: 13868/20016 Out of bounds for computation -> 1.78999[0.001,0.5]
13869
13870
13871
Interaction: 13872/20016 Out of bounds for computation -> 1.40215[0.001,0.5]
13873
13874
Interaction: 13875/20016 Out of bounds for computation -> 0.954364[0.001,0.5]
13876
13877
Interaction: 13878/20016 Out of bounds for computation -> 2.27795[0.001,0.5]
13879
Interaction: 13880/20016 Out of bounds for computation -> 1.57228[0.001,0.5]
13881
Interaction: 13882/20016 Out of bounds for computation -> 0.974317[0.001,0.5]
13883
Interaction: 13884/20016 Out of bounds for computation -> 1.1964[0.001,0.5]
13885
13886
13887
Interaction: 13888/20016 Out of bounds for computation -> 0.691331[0.001,0.5]
13889
Interaction: 13890/20016 Out of bounds for computation -> 1.59178[0.001,0.5]
13891
13892
Interaction: 13893/20016 Out of bounds for computation -> 1.9663[0.001,0.5]
13894
Interaction: 13895/20016 Out of bounds for computation -> 2.51878[0.001,0.5]
Interaction: 13896/20016 Out of bounds for computation -> 0.914334[0.001,0.5]
Interaction: 13897/20016 Out of bounds for computation -> 2.45122[0.001,0.5]
13898
13899
Interaction: 13900/20016 Out of bounds for computation -> 2.0242[0.001,0.5]
Interaction: 13901/20016 Out of bounds for computation -> 1.74186[0.001,0.5]
13902
13903
13904
13905
13906
13907
Interaction: 13908/20016 Out of bounds for computation -> 2.55061[0.001,0.5]
13909
13910
13911
13912
13913
13914
Interaction: 13915/20016 Out of bounds for computation -> 0.688161[0.001,0.5]
13916
13917
Interaction: 13918/20016 Out of bounds for computation -> 2.24697[0.001,0.5]
Interaction: 13919/20016 Out of bounds for computation -> 1.54243[0.001,0.5]
13920
13921
Interaction: 13922/20016 Out of bounds for computation -> 0.687764[0.001,0.5]
13923
Interaction: 13924/20016 Out of bounds for computation -> 0.638803[0.001,0.5]
13925
13926
Interaction: 13927/20016 Out of bounds for computation -> 1.50003[0.001,0.5]
13928
Interaction: 13929/20016 Out of bounds for computation -> 1.42276[0.001,0.5]
13930
13931
13932
Interaction: 13933/20016 Out of bounds for computation -> 0.810714[0.001,0.5]
Interaction: 13934/20016 Out of bounds for computation -> 0.7643[0.001,0.5]
13935
Interaction: 13936/20016 Out of bounds for computation -> 0.584252[0.001,0.5]
13937
Interaction: 13938/20016 Out of bounds for computation -> 0.787874[0.001,0.5]
13939
Interaction: 13940/20016 Out of bounds for computation -> 1.01862[0.001,0.5]
13941
Interaction: 13942/20016 Out of bounds for computation -> 1.39076[0.001,0.5]
Interaction: 13943/20016 Out of bounds for computation -> 0.611596[0.001,0.5]
13944
13945
13946
Interaction: 13947/20016 Out of bounds for computation -> 0.626166[0.001,0.5]
Interaction: 13948/20016 Out of bounds for computation -> 0.789249[0.001,0.5]
13949
13950
13951
13952
13953
Interaction: 13954/20016 Out of bounds for computation -> 1.46382[0.001,0.5]
Interaction: 13955/20016 Out of bounds for computation -> 1.50966[0.001,0.5]
Interaction: 13956/20016 Out of bounds for computation -> 0.596857[0.001,0.5]
13957
Interaction: 13958/20016 Out of bounds for computation -> 2.57037[0.001,0.5]
13959
13960
13961
13962
Interaction: 13963/20016 Out of bounds for computation -> 0.664838[0.001,0.5]
13964
13965
13966
13967
13968
13969
13970
Interaction: 13971/20016 Out of bounds for computation -> 1.00758[0.001,0.5]
Interaction: 13972/20016 Out of bounds for computation -> 2.73165[0.001,0.5]
13973
13974
13975
Interaction: 13976/20016 Out of bounds for computation -> 2.45462[0.001,0.5]
Interaction: 13977/20016 Out of bounds for computation -> 1.81015[0.001,0.5]
13978
13979
13980
13981
Interaction: 13982/20016 Out of bounds for computation -> 1.20085[0.001,0.5]
Interaction: 13983/20016 Out of bounds for computation -> 1.61595[0.001,0.5]
13984
13985
Interaction: 13986/20016 Out of bounds for computation -> 2.35082[0.001,0.5]
Interaction: 13987/20016 Out of bounds for computation -> 0.622268[0.001,0.5]
13988
13989
Interaction: 13990/20016 Out of bounds for computation -> 1.7881[0.001,0.5]
13991
13992
13993
Interaction: 13994/20016 Out of bounds for computation -> 2.5947[0.001,0.5]
13995
13996
13997
Interaction: 13998/20016 Out of bounds for computation -> 2.25942[0.001,0.5]
13999
Interaction: 14000/20016 Out of bounds for computation -> 1.1503[0.001,0.5]
Interaction: 14001/20016 Out of bounds for computation -> 0.882383[0.001,0.5]
14002
Interaction: 14003/20016 Out of bounds for computation -> 0.757112[0.001,0.5]
14004
Interaction: 14005/20016 Out of bounds for computation -> 0.637843[0.001,0.5]
Interaction: 14006/20016 Out of bounds for computation -> 2.89461[0.001,0.5]
14007
14008
Interaction: 14009/20016 Out of bounds for computation -> 2.16616[0.001,0.5]
14010
Interaction: 14011/20016 Out of bounds for computation -> 0.920927[0.001,0.5]
Interaction: 14012/20016 Out of bounds for computation -> 0.545381[0.001,0.5]
Interaction: 14013/20016 Out of bounds for computation -> 0.713415[0.001,0.5]
Interaction: 14014/20016 Out of bounds for computation -> 0.616154[0.001,0.5]
14015
14016
Interaction: 14017/20016 Out of bounds for computation -> 2.38594[0.001,0.5]
14018
14019
14020
Interaction: 14021/20016 Out of bounds for computation -> 1.44175[0.001,0.5]
14022
14023
14024
Interaction: 14025/20016 Out of bounds for computation -> 0.606918[0.001,0.5]
14026
14027
Interaction: 14028/20016 Out of bounds for computation -> 0.523629[0.001,0.5]
14029
14030
Interaction: 14031/20016 Out of bounds for computation -> 2.11261[0.001,0.5]
Interaction: 14032/20016 Out of bounds for computation -> 1.07846[0.001,0.5]
Interaction: 14033/20016 Out of bounds for computation -> 1.18769[0.001,0.5]
14034
Interaction: 14035/20016 Out of bounds for computation -> 0.653455[0.001,0.5]
Interaction: 14036/20016 Out of bounds for computation -> 0.514996[0.001,0.5]
14037
14038
14039
Interaction: 14040/20016 Out of bounds for computation -> 0.865587[0.001,0.5]
14041
14042
Interaction: 14043/20016 Out of bounds for computation -> 1.39916[0.001,0.5]
14044
Interaction: 14045/20016 Out of bounds for computation -> 2.18347[0.001,0.5]
Interaction: 14046/20016 Out of bounds for computation -> 0.704013[0.001,0.5]
14047
14048
14049
14050
14051
Interaction: 14052/20016 Out of bounds for computation -> 0.833426[0.001,0.5]
14053
Interaction: 14054/20016 Out of bounds for computation -> 2.37612[0.001,0.5]
14055
14056
Interaction: 14057/20016 Out of bounds for computation -> 0.859993[0.001,0.5]
14058
14059
14060
14061
Interaction: 14062/20016 Out of bounds for computation -> 0.774028[0.001,0.5]
Interaction: 14063/20016 Out of bounds for computation -> 0.553055[0.001,0.5]
14064
Interaction: 14065/20016 Out of bounds for computation -> 1.56848[0.001,0.5]
14066
14067
14068
Interaction: 14069/20016 Out of bounds for computation -> 1.39934[0.001,0.5]
Interaction: 14070/20016 Out of bounds for computation -> 0.531807[0.001,0.5]
Interaction: 14071/20016 Out of bounds for computation -> 1.95511[0.001,0.5]
14072
14073
14074
Interaction: 14075/20016 Out of bounds for computation -> 2.81262[0.001,0.5]
14076
14077
Interaction: 14078/20016 Out of bounds for computation -> 1.26159[0.001,0.5]
14079
14080
Interaction: 14081/20016 Out of bounds for computation -> 2.55134[0.001,0.5]
14082
Interaction: 14083/20016 Out of bounds for computation -> 1.12552[0.001,0.5]
14084
14085
14086
14087
Interaction: 14088/20016 Out of bounds for computation -> 2.39617[0.001,0.5]
Interaction: 14089/20016 Out of bounds for computation -> 0.567404[0.001,0.5]
14090
Interaction: 14091/20016 Out of bounds for computation -> 0.636591[0.001,0.5]
14092
14093
Interaction: 14094/20016 Out of bounds for computation -> 1.4428[0.001,0.5]
14095
14096
14097
14098
14099
Interaction: 14100/20016 Out of bounds for computation -> 2.48499[0.001,0.5]
14101
Interaction: 14102/20016 Out of bounds for computation -> 2.381[0.001,0.5]
14103
14104
Interaction: 14105/20016 Out of bounds for computation -> 2.7946[0.001,0.5]
14106
14107
14108
14109
14110
Interaction: 14111/20016 Out of bounds for computation -> 0.707188[0.001,0.5]
Interaction: 14112/20016 Out of bounds for computation -> 1.54195[0.001,0.5]
14113
Interaction: 14114/20016 Out of bounds for computation -> 2.00845[0.001,0.5]
14115
14116
14117
14118
Interaction: 14119/20016 Out of bounds for computation -> 0.574878[0.001,0.5]
14120
Interaction: 14121/20016 Out of bounds for computation -> 1.1857[0.001,0.5]
Interaction: 14122/20016 Out of bounds for computation -> 1.44565[0.001,0.5]
Interaction: 14123/20016 Out of bounds for computation -> 1.41057[0.001,0.5]
Interaction: 14124/20016 Out of bounds for computation -> 0.691988[0.001,0.5]
14125
14126
14127
14128
14129
Interaction: 14130/20016 Out of bounds for computation -> 2.55616[0.001,0.5]
14131
14132
14133
Interaction: 14134/20016 Out of bounds for computation -> 2.41045[0.001,0.5]
Interaction: 14135/20016 Out of bounds for computation -> 0.632135[0.001,0.5]
14136
Interaction: 14137/20016 Out of bounds for computation -> 0.579079[0.001,0.5]
14138
Interaction: 14139/20016 Out of bounds for computation -> 0.547926[0.001,0.5]
Interaction: 14140/20016 Out of bounds for computation -> 1.62578[0.001,0.5]
14141
14142
Interaction: 14143/20016 Out of bounds for computation -> 1.17722[0.001,0.5]
14144
Interaction: 14145/20016 Out of bounds for computation -> 2.14191[0.001,0.5]
Interaction: 14146/20016 Out of bounds for computation -> 0.586358[0.001,0.5]
Interaction: 14147/20016 Out of bounds for computation -> 0.544107[0.001,0.5]
Interaction: 14148/20016 Out of bounds for computation -> 0.570422[0.001,0.5]
14149
Interaction: 14150/20016 Out of bounds for computation -> 0.722889[0.001,0.5]
Interaction: 14151/20016 Out of bounds for computation -> 0.700367[0.001,0.5]
Interaction: 14152/20016 Out of bounds for computation -> 1.44949[0.001,0.5]
14153
14154
Interaction: 14155/20016 Out of bounds for computation -> 2.03935[0.001,0.5]
Interaction: 14156/20016 Out of bounds for computation -> 1.02028[0.001,0.5]
14157
14158
14159
14160
14161
14162
14163
14164
14165
Interaction: 14166/20016 Out of bounds for computation -> 1.46324[0.001,0.5]
14167
Interaction: 14168/20016 Out of bounds for computation -> 0.672766[0.001,0.5]
Interaction: 14169/20016 Out of bounds for computation -> 0.551117[0.001,0.5]
Interaction: 14170/20016 Out of bounds for computation -> 0.608677[0.001,0.5]
Interaction: 14171/20016 Out of bounds for computation -> 1.65232[0.001,0.5]
Interaction: 14172/20016 Out of bounds for computation -> 0.703064[0.001,0.5]
Interaction: 14173/20016 Out of bounds for computation -> 1.10434[0.001,0.5]
14174
14175
14176
14177
14178
14179
14180
14181
Interaction: 14182/20016 Out of bounds for computation -> 1.54311[0.001,0.5]
14183
14184
14185
Interaction: 14186/20016 Out of bounds for computation -> 1.84262[0.001,0.5]
Interaction: 14187/20016 Out of bounds for computation -> 0.60422[0.001,0.5]
14188
Interaction: 14189/20016 Out of bounds for computation -> 1.57007[0.001,0.5]
14190
Interaction: 14191/20016 Out of bounds for computation -> 2.26222[0.001,0.5]
14192
Interaction: 14193/20016 Out of bounds for computation -> 0.731955[0.001,0.5]
14194
14195
Interaction: 14196/20016 Out of bounds for computation -> 2.52623[0.001,0.5]
Interaction: 14197/20016 Out of bounds for computation -> 0.523106[0.001,0.5]
Interaction: 14198/20016 Out of bounds for computation -> 1.26917[0.001,0.5]
14199
14200
Interaction: 14201/20016 Out of bounds for computation -> 1.61544[0.001,0.5]
14202
14203
Interaction: 14204/20016 Out of bounds for computation -> 0.702509[0.001,0.5]
Interaction: 14205/20016 Out of bounds for computation -> 0.878121[0.001,0.5]
14206
14207
14208
14209
14210
14211
Interaction: 14212/20016 Out of bounds for computation -> 2.43522[0.001,0.5]
Interaction: 14213/20016 Out of bounds for computation -> 2.18876[0.001,0.5]
14214
14215
Interaction: 14216/20016 Out of bounds for computation -> 2.44175[0.001,0.5]
14217
Interaction: 14218/20016 Out of bounds for computation -> 1.65581[0.001,0.5]
Interaction: 14219/20016 Out of bounds for computation -> 2.83638[0.001,0.5]
14220
Interaction: 14221/20016 Out of bounds for computation -> 1.07811[0.001,0.5]
14222
14223
Interaction: 14224/20016 Out of bounds for computation -> 1.3882[0.001,0.5]
Interaction: 14225/20016 Out of bounds for computation -> 1.62432[0.001,0.5]
14226
Interaction: 14227/20016 Out of bounds for computation -> 0.755999[0.001,0.5]
14228
Interaction: 14229/20016 Out of bounds for computation -> 0.62987[0.001,0.5]
14230
Interaction: 14231/20016 Out of bounds for computation -> 2.66289[0.001,0.5]
Interaction: 14232/20016 Out of bounds for computation -> 1.3785[0.001,0.5]
14233
Interaction: 14234/20016 Out of bounds for computation -> 0.541247[0.001,0.5]
14235
Interaction: 14236/20016 Out of bounds for computation -> 1.10556[0.001,0.5]
14237
Interaction: 14238/20016 Out of bounds for computation -> 2.67291[0.001,0.5]
14239
14240
Interaction: 14241/20016 Out of bounds for computation -> 0.628759[0.001,0.5]
Interaction: 14242/20016 Out of bounds for computation -> 1.56494[0.001,0.5]
Interaction: 14243/20016 Out of bounds for computation -> 0.740441[0.001,0.5]
14244
Interaction: 14245/20016 Out of bounds for computation -> 1.48089[0.001,0.5]
14246
14247
Interaction: 14248/20016 Out of bounds for computation -> 0.726218[0.001,0.5]
Interaction: 14249/20016 Out of bounds for computation -> 0.614792[0.001,0.5]
14250
Interaction: 14251/20016 Out of bounds for computation -> 2.69648[0.001,0.5]
Interaction: 14252/20016 Out of bounds for computation -> 2.20022[0.001,0.5]
14253
Interaction: 14254/20016 Out of bounds for computation -> 0.764333[0.001,0.5]
14255
Interaction: 14256/20016 Out of bounds for computation -> 1.92668[0.001,0.5]
Interaction: 14257/20016 Out of bounds for computation -> 2.36903[0.001,0.5]
14258
14259
14260
14261
14262
14263
Interaction: 14264/20016 Out of bounds for computation -> 0.617579[0.001,0.5]
14265
Interaction: 14266/20016 Out of bounds for computation -> 2.33297[0.001,0.5]
14267
14268
14269
Interaction: 14270/20016 Out of bounds for computation -> 1.26669[0.001,0.5]
14271
14272
Interaction: 14273/20016 Out of bounds for computation -> 1.93411[0.001,0.5]
14274
Interaction: 14275/20016 Out of bounds for computation -> 1.85982[0.001,0.5]
Interaction: 14276/20016 Out of bounds for computation -> 0.701041[0.001,0.5]
Interaction: 14277/20016 Out of bounds for computation -> 0.871058[0.001,0.5]
14278
14279
14280
Interaction: 14281/20016 Out of bounds for computation -> 0.656887[0.001,0.5]
Interaction: 14282/20016 Out of bounds for computation -> 1.83051[0.001,0.5]
14283
14284
14285
14286
14287
14288
Interaction: 14289/20016 Out of bounds for computation -> 1.68983[0.001,0.5]
14290
14291
14292
Interaction: 14293/20016 Out of bounds for computation -> 0.667013[0.001,0.5]
Interaction: 14294/20016 Out of bounds for computation -> 1.37189[0.001,0.5]
14295
14296
Interaction: 14297/20016 Out of bounds for computation -> 0.604828[0.001,0.5]
Interaction: 14298/20016 Out of bounds for computation -> 0.69327[0.001,0.5]
14299
Interaction: 14300/20016 Out of bounds for computation -> 0.658433[0.001,0.5]
14301
14302
14303
14304
14305
14306
14307
14308
Interaction: 14309/20016 Out of bounds for computation -> 1.74686[0.001,0.5]
Interaction: 14310/20016 Out of bounds for computation -> 2.83814[0.001,0.5]
14311
Interaction: 14312/20016 Out of bounds for computation -> 1.65954[0.001,0.5]
14313
Interaction: 14314/20016 Out of bounds for computation -> 0.969461[0.001,0.5]
Interaction: 14315/20016 Out of bounds for computation -> 1.48285[0.001,0.5]
14316
14317
14318
14319
14320
14321
14322
Interaction: 14323/20016 Out of bounds for computation -> 1.64605[0.001,0.5]
14324
14325
Interaction: 14326/20016 Out of bounds for computation -> 0.681023[0.001,0.5]
14327
Interaction: 14328/20016 Out of bounds for computation -> 2.44585[0.001,0.5]
Interaction: 14329/20016 Out of bounds for computation -> 1.47198[0.001,0.5]
14330
Interaction: 14331/20016 Out of bounds for computation -> 2.15207[0.001,0.5]
14332
14333
14334
Interaction: 14335/20016 Out of bounds for computation -> 0.657646[0.001,0.5]
14336
Interaction: 14337/20016 Out of bounds for computation -> 2.59674[0.001,0.5]
14338
14339
14340
14341
14342
14343
14344
14345
14346
Interaction: 14347/20016 Out of bounds for computation -> 2.19004[0.001,0.5]
14348
14349
14350
14351
14352
Interaction: 14353/20016 Out of bounds for computation -> 1.99968[0.001,0.5]
Interaction: 14354/20016 Out of bounds for computation -> 2.83032[0.001,0.5]
14355
14356
Interaction: 14357/20016 Out of bounds for computation -> 1.48391[0.001,0.5]
14358
Interaction: 14359/20016 Out of bounds for computation -> 1.04251[0.001,0.5]
14360
Interaction: 14361/20016 Out of bounds for computation -> 0.749612[0.001,0.5]
14362
14363
14364
14365
14366
Interaction: 14367/20016 Out of bounds for computation -> 2.06306[0.001,0.5]
Interaction: 14368/20016 Out of bounds for computation -> 2.14335[0.001,0.5]
14369
14370
14371
14372
Interaction: 14373/20016 Out of bounds for computation -> 2.26128[0.001,0.5]
14374
Interaction: 14375/20016 Out of bounds for computation -> 0.610122[0.001,0.5]
14376
Interaction: 14377/20016 Out of bounds for computation -> 0.709573[0.001,0.5]
Interaction: 14378/20016 Out of bounds for computation -> 0.782747[0.001,0.5]
Interaction: 14379/20016 Out of bounds for computation -> 0.661787[0.001,0.5]
Interaction: 14380/20016 Out of bounds for computation -> 0.699857[0.001,0.5]
14381
14382
14383
Interaction: 14384/20016 Out of bounds for computation -> 2.29396[0.001,0.5]
Interaction: 14385/20016 Out of bounds for computation -> 0.629154[0.001,0.5]
Interaction: 14386/20016 Out of bounds for computation -> 1.74433[0.001,0.5]
Interaction: 14387/20016 Out of bounds for computation -> 2.84744[0.001,0.5]
Interaction: 14388/20016 Out of bounds for computation -> 0.593559[0.001,0.5]
14389
Interaction: 14390/20016 Out of bounds for computation -> 0.980717[0.001,0.5]
Interaction: 14391/20016 Out of bounds for computation -> 2.48116[0.001,0.5]
14392
Interaction: 14393/20016 Out of bounds for computation -> 2.39821[0.001,0.5]
Interaction: 14394/20016 Out of bounds for computation -> 1.8961[0.001,0.5]
Interaction: 14395/20016 Out of bounds for computation -> 2.66086[0.001,0.5]
Interaction: 14396/20016 Out of bounds for computation -> 0.603604[0.001,0.5]
14397
14398
Interaction: 14399/20016 Out of bounds for computation -> 0.544257[0.001,0.5]
14400
Interaction: 14401/20016 Out of bounds for computation -> 1.8964[0.001,0.5]
14402
Interaction: 14403/20016 Out of bounds for computation -> 0.919415[0.001,0.5]
14404
Interaction: 14405/20016 Out of bounds for computation -> 1.05706[0.001,0.5]
14406
14407
14408
14409
Interaction: 14410/20016 Out of bounds for computation -> 2.05822[0.001,0.5]
14411
Interaction: 14412/20016 Out of bounds for computation -> 1.14135[0.001,0.5]
Interaction: 14413/20016 Out of bounds for computation -> 0.836786[0.001,0.5]
14414
14415
14416
Interaction: 14417/20016 Out of bounds for computation -> 2.08776[0.001,0.5]
14418
14419
Interaction: 14420/20016 Out of bounds for computation -> 0.74547[0.001,0.5]
14421
14422
Interaction: 14423/20016 Out of bounds for computation -> 0.55526[0.001,0.5]
14424
14425
Interaction: 14426/20016 Out of bounds for computation -> 1.81165[0.001,0.5]
14427
14428
14429
14430
14431
14432
14433
14434
14435
Interaction: 14436/20016 Out of bounds for computation -> 1.82263[0.001,0.5]
Interaction: 14437/20016 Out of bounds for computation -> 2.41728[0.001,0.5]
14438
14439
14440
14441
14442
Interaction: 14443/20016 Out of bounds for computation -> 0.91308[0.001,0.5]
14444
14445
Interaction: 14446/20016 Out of bounds for computation -> 1.66931[0.001,0.5]
Interaction: 14447/20016 Out of bounds for computation -> 0.625126[0.001,0.5]
Interaction: 14448/20016 Out of bounds for computation -> 1.75196[0.001,0.5]
Interaction: 14449/20016 Out of bounds for computation -> 0.660666[0.001,0.5]
14450
Interaction: 14451/20016 Out of bounds for computation -> 0.559602[0.001,0.5]
Interaction: 14452/20016 Out of bounds for computation -> 1.01376[0.001,0.5]
14453
Interaction: 14454/20016 Out of bounds for computation -> 1.02009[0.001,0.5]
Interaction: 14455/20016 Out of bounds for computation -> 0.533948[0.001,0.5]
14456
14457
Interaction: 14458/20016 Out of bounds for computation -> 2.4958[0.001,0.5]
Interaction: 14459/20016 Out of bounds for computation -> 0.948218[0.001,0.5]
14460
14461
Interaction: 14462/20016 Out of bounds for computation -> 2.43888[0.001,0.5]
14463
Interaction: 14464/20016 Out of bounds for computation -> 0.880753[0.001,0.5]
14465
Interaction: 14466/20016 Out of bounds for computation -> 1.65593[0.001,0.5]
Interaction: 14467/20016 Out of bounds for computation -> 1.45143[0.001,0.5]
14468
Interaction: 14469/20016 Out of bounds for computation -> 0.72999[0.001,0.5]
Interaction: 14470/20016 Out of bounds for computation -> 1.02467[0.001,0.5]
14471
Interaction: 14472/20016 Out of bounds for computation -> 2.85325[0.001,0.5]
Interaction: 14473/20016 Out of bounds for computation -> 0.58468[0.001,0.5]
14474
14475
14476
14477
Interaction: 14478/20016 Out of bounds for computation -> 1.2251[0.001,0.5]
14479
14480
14481
Interaction: 14482/20016 Out of bounds for computation -> 1.42549[0.001,0.5]
Interaction: 14483/20016 Out of bounds for computation -> 2.74509[0.001,0.5]
14484
14485
14486
Interaction: 14487/20016 Out of bounds for computation -> 0.711418[0.001,0.5]
14488
14489
Interaction: 14490/20016 Out of bounds for computation -> 0.564558[0.001,0.5]
14491
14492
14493
14494
14495
14496
14497
14498
14499
14500
Interaction: 14501/20016 Out of bounds for computation -> 0.624933[0.001,0.5]
14502
Interaction: 14503/20016 Out of bounds for computation -> 0.623172[0.001,0.5]
14504
14505
14506
Interaction: 14507/20016 Out of bounds for computation -> 1.51695[0.001,0.5]
Interaction: 14508/20016 Out of bounds for computation -> 2.19934[0.001,0.5]
14509
14510
14511
14512
14513
14514
14515
Interaction: 14516/20016 Out of bounds for computation -> 0.510458[0.001,0.5]
Interaction: 14517/20016 Out of bounds for computation -> 2.75293[0.001,0.5]
Interaction: 14518/20016 Out of bounds for computation -> 0.725933[0.001,0.5]
14519
Interaction: 14520/20016 Out of bounds for computation -> 2.10638[0.001,0.5]
14521
Interaction: 14522/20016 Out of bounds for computation -> 0.985519[0.001,0.5]
14523
14524
14525
14526
14527
14528
Interaction: 14529/20016 Out of bounds for computation -> 1.68348[0.001,0.5]
Interaction: 14530/20016 Out of bounds for computation -> 0.635527[0.001,0.5]
Interaction: 14531/20016 Out of bounds for computation -> 2.43638[0.001,0.5]
14532
14533
14534
Interaction: 14535/20016 Out of bounds for computation -> 0.574695[0.001,0.5]
14536
Interaction: 14537/20016 Out of bounds for computation -> 0.617822[0.001,0.5]
14538
14539
Interaction: 14540/20016 Out of bounds for computation -> 1.70883[0.001,0.5]
Interaction: 14541/20016 Out of bounds for computation -> 1.88778[0.001,0.5]
14542
14543
Interaction: 14544/20016 Out of bounds for computation -> 0.776283[0.001,0.5]
14545
14546
14547
Interaction: 14548/20016 Out of bounds for computation -> 2.26918[0.001,0.5]
14549
Interaction: 14550/20016 Out of bounds for computation -> 1.43539[0.001,0.5]
14551
14552
14553
Interaction: 14554/20016 Out of bounds for computation -> 1.39088[0.001,0.5]
Interaction: 14555/20016 Out of bounds for computation -> 0.957687[0.001,0.5]
Interaction: 14556/20016 Out of bounds for computation -> 0.680532[0.001,0.5]
14557
14558
Interaction: 14559/20016 Out of bounds for computation -> 2.32528[0.001,0.5]
14560
14561
14562
Interaction: 14563/20016 Out of bounds for computation -> 2.38182[0.001,0.5]
14564
14565
Interaction: 14566/20016 Out of bounds for computation -> 2.52542[0.001,0.5]
14567
14568
14569
14570
14571
14572
14573
14574
14575
Interaction: 14576/20016 Out of bounds for computation -> 2.27252[0.001,0.5]
Interaction: 14577/20016 Out of bounds for computation -> 0.55405[0.001,0.5]
14578
14579
Interaction: 14580/20016 Out of bounds for computation -> 2.46869[0.001,0.5]
14581
Interaction: 14582/20016 Out of bounds for computation -> 0.500883[0.001,0.5]
14583
Interaction: 14584/20016 Out of bounds for computation -> 0.542704[0.001,0.5]
Interaction: 14585/20016 Out of bounds for computation -> 1.92972[0.001,0.5]
Interaction: 14586/20016 Out of bounds for computation -> 0.587779[0.001,0.5]
Interaction: 14587/20016 Out of bounds for computation -> 1.43965[0.001,0.5]
14588
Interaction: 14589/20016 Out of bounds for computation -> 0.722406[0.001,0.5]
Interaction: 14590/20016 Out of bounds for computation -> 1.65709[0.001,0.5]
Interaction: 14591/20016 Out of bounds for computation -> 1.95776[0.001,0.5]
14592
Interaction: 14593/20016 Out of bounds for computation -> 2.20457[0.001,0.5]
14594
14595
Interaction: 14596/20016 Out of bounds for computation -> 0.707015[0.001,0.5]
14597
Interaction: 14598/20016 Out of bounds for computation -> 0.572019[0.001,0.5]
14599
14600
14601
Interaction: 14602/20016 Out of bounds for computation -> 1.47184[0.001,0.5]
Interaction: 14603/20016 Out of bounds for computation -> 2.17519[0.001,0.5]
14604
14605
14606
Interaction: 14607/20016 Out of bounds for computation -> 2.7472[0.001,0.5]
14608
Interaction: 14609/20016 Out of bounds for computation -> 1.37529[0.001,0.5]
Interaction: 14610/20016 Out of bounds for computation -> 2.81609[0.001,0.5]
14611
14612
Interaction: 14613/20016 Out of bounds for computation -> 2.63237[0.001,0.5]
14614
Interaction: 14615/20016 Out of bounds for computation -> 0.578485[0.001,0.5]
14616
Interaction: 14617/20016 Out of bounds for computation -> 0.771496[0.001,0.5]
Interaction: 14618/20016 Out of bounds for computation -> 0.624192[0.001,0.5]
Interaction: 14619/20016 Out of bounds for computation -> 0.702429[0.001,0.5]
Interaction: 14620/20016 Out of bounds for computation -> 0.756123[0.001,0.5]
Interaction: 14621/20016 Out of bounds for computation -> 1.22901[0.001,0.5]
14622
14623
14624
Interaction: 14625/20016 Out of bounds for computation -> 0.608401[0.001,0.5]
14626
14627
Interaction: 14628/20016 Out of bounds for computation -> 0.680393[0.001,0.5]
14629
14630
Interaction: 14631/20016 Out of bounds for computation -> 0.666302[0.001,0.5]
Interaction: 14632/20016 Out of bounds for computation -> 0.753592[0.001,0.5]
14633
14634
Interaction: 14635/20016 Out of bounds for computation -> 2.55858[0.001,0.5]
14636
Interaction: 14637/20016 Out of bounds for computation -> 2.47994[0.001,0.5]
14638
Interaction: 14639/20016 Out of bounds for computation -> 0.654034[0.001,0.5]
Interaction: 14640/20016 Out of bounds for computation -> 2.65193[0.001,0.5]
14641
14642
Interaction: 14643/20016 Out of bounds for computation -> 2.70981[0.001,0.5]
14644
14645
Interaction: 14646/20016 Out of bounds for computation -> 0.710592[0.001,0.5]
14647
14648
Interaction: 14649/20016 Out of bounds for computation -> 0.687776[0.001,0.5]
Interaction: 14650/20016 Out of bounds for computation -> 2.64331[0.001,0.5]
Interaction: 14651/20016 Out of bounds for computation -> 0.62842[0.001,0.5]
14652
14653
14654
Interaction: 14655/20016 Out of bounds for computation -> 0.944473[0.001,0.5]
Interaction: 14656/20016 Out of bounds for computation -> 0.647017[0.001,0.5]
Interaction: 14657/20016 Out of bounds for computation -> 1.07933[0.001,0.5]
14658
14659
14660
14661
Interaction: 14662/20016 Out of bounds for computation -> 0.830767[0.001,0.5]
Interaction: 14663/20016 Out of bounds for computation -> 1.50328[0.001,0.5]
14664
Interaction: 14665/20016 Out of bounds for computation -> 1.73825[0.001,0.5]
Interaction: 14666/20016 Out of bounds for computation -> 1.33883[0.001,0.5]
14667
Interaction: 14668/20016 Out of bounds for computation -> 0.78686[0.001,0.5]
14669
Interaction: 14670/20016 Out of bounds for computation -> 0.789794[0.001,0.5]
14671
14672
Interaction: 14673/20016 Out of bounds for computation -> 1.52193[0.001,0.5]
14674
14675
Interaction: 14676/20016 Out of bounds for computation -> 0.751502[0.001,0.5]
14677
14678
Interaction: 14679/20016 Out of bounds for computation -> 0.61863[0.001,0.5]
14680
14681
Interaction: 14682/20016 Out of bounds for computation -> 1.43921[0.001,0.5]
Interaction: 14683/20016 Out of bounds for computation -> 1.26731[0.001,0.5]
14684
Interaction: 14685/20016 Out of bounds for computation -> 0.933792[0.001,0.5]
14686
14687
14688
Interaction: 14689/20016 Out of bounds for computation -> 0.597657[0.001,0.5]
14690
14691
14692
14693
Interaction: 14694/20016 Out of bounds for computation -> 2.02715[0.001,0.5]
14695
Interaction: 14696/20016 Out of bounds for computation -> 0.873052[0.001,0.5]
14697
14698
14699
Interaction: 14700/20016 Out of bounds for computation -> 2.37051[0.001,0.5]
Interaction: 14701/20016 Out of bounds for computation -> 2.7285[0.001,0.5]
14702
Interaction: 14703/20016 Out of bounds for computation -> 0.53955[0.001,0.5]
Interaction: 14704/20016 Out of bounds for computation -> 0.699585[0.001,0.5]
14705
14706
14707
Interaction: 14708/20016 Out of bounds for computation -> 1.71249[0.001,0.5]
14709
14710
Interaction: 14711/20016 Out of bounds for computation -> 2.43839[0.001,0.5]
14712
14713
14714
14715
14716
14717
Interaction: 14718/20016 Out of bounds for computation -> 1.9195[0.001,0.5]
14719
Interaction: 14720/20016 Out of bounds for computation -> 2.43164[0.001,0.5]
14721
14722
14723
Interaction: 14724/20016 Out of bounds for computation -> 0.511945[0.001,0.5]
14725
14726
14727
Interaction: 14728/20016 Out of bounds for computation -> 1.8987[0.001,0.5]
Interaction: 14729/20016 Out of bounds for computation -> 0.754235[0.001,0.5]
Interaction: 14730/20016 Out of bounds for computation -> 0.578386[0.001,0.5]
Interaction: 14731/20016 Out of bounds for computation -> 0.632077[0.001,0.5]
14732
14733
14734
14735
Interaction: 14736/20016 Out of bounds for computation -> 0.544217[0.001,0.5]
14737
14738
14739
14740
14741
14742
14743
Interaction: 14744/20016 Out of bounds for computation -> 1.13126[0.001,0.5]
Interaction: 14745/20016 Out of bounds for computation -> 2.85739[0.001,0.5]
14746
14747
Interaction: 14748/20016 Out of bounds for computation -> 0.774327[0.001,0.5]
14749
Interaction: 14750/20016 Out of bounds for computation -> 2.77998[0.001,0.5]
14751
Interaction: 14752/20016 Out of bounds for computation -> 1.31933[0.001,0.5]
Interaction: 14753/20016 Out of bounds for computation -> 2.75367[0.001,0.5]
14754
14755
14756
Interaction: 14757/20016 Out of bounds for computation -> 2.44799[0.001,0.5]
Interaction: 14758/20016 Out of bounds for computation -> 0.761694[0.001,0.5]
Interaction: 14759/20016 Out of bounds for computation -> 0.61376[0.001,0.5]
Interaction: 14760/20016 Out of bounds for computation -> 2.04934[0.001,0.5]
14761
14762
Interaction: 14763/20016 Out of bounds for computation -> 1.00851[0.001,0.5]
14764
14765
14766
14767
14768
Interaction: 14769/20016 Out of bounds for computation -> 1.65474[0.001,0.5]
14770
Interaction: 14771/20016 Out of bounds for computation -> 0.964434[0.001,0.5]
14772
14773
14774
14775
Interaction: 14776/20016 Out of bounds for computation -> 0.588103[0.001,0.5]
14777
14778
14779
14780
Interaction: 14781/20016 Out of bounds for computation -> 1.4718[0.001,0.5]
14782
Interaction: 14783/20016 Out of bounds for computation -> 2.18277[0.001,0.5]
14784
14785
Interaction: 14786/20016 Out of bounds for computation -> 1.4389[0.001,0.5]
14787
14788
Interaction: 14789/20016 Out of bounds for computation -> 1.77677[0.001,0.5]
Interaction: 14790/20016 Out of bounds for computation -> 1.54917[0.001,0.5]
Interaction: 14791/20016 Out of bounds for computation -> 2.08748[0.001,0.5]
14792
14793
Interaction: 14794/20016 Out of bounds for computation -> 0.57211[0.001,0.5]
14795
Interaction: 14796/20016 Out of bounds for computation -> 0.694868[0.001,0.5]
14797
Interaction: 14798/20016 Out of bounds for computation -> 0.572022[0.001,0.5]
14799
14800
Interaction: 14801/20016 Out of bounds for computation -> 0.73946[0.001,0.5]
Interaction: 14802/20016 Out of bounds for computation -> 2.23571[0.001,0.5]
14803
Interaction: 14804/20016 Out of bounds for computation -> 0.582419[0.001,0.5]
14805
14806
Interaction: 14807/20016 Out of bounds for computation -> 1.052[0.001,0.5]
14808
14809
14810
14811
Interaction: 14812/20016 Out of bounds for computation -> 0.815863[0.001,0.5]
14813
Interaction: 14814/20016 Out of bounds for computation -> 0.849401[0.001,0.5]
Interaction: 14815/20016 Out of bounds for computation -> 1.39445[0.001,0.5]
14816
14817
14818
14819
14820
14821
Interaction: 14822/20016 Out of bounds for computation -> 2.64744[0.001,0.5]
14823
14824
Interaction: 14825/20016 Out of bounds for computation -> 2.73657[0.001,0.5]
Interaction: 14826/20016 Out of bounds for computation -> 0.636993[0.001,0.5]
Interaction: 14827/20016 Out of bounds for computation -> 0.674684[0.001,0.5]
14828
Interaction: 14829/20016 Out of bounds for computation -> 1.38376[0.001,0.5]
14830
Interaction: 14831/20016 Out of bounds for computation -> 2.19569[0.001,0.5]
Interaction: 14832/20016 Out of bounds for computation -> 2.12805[0.001,0.5]
14833
Interaction: 14834/20016 Out of bounds for computation -> 2.21383[0.001,0.5]
Interaction: 14835/20016 Out of bounds for computation -> 0.719981[0.001,0.5]
14836
14837
14838
14839
14840
14841
14842
14843
Interaction: 14844/20016 Out of bounds for computation -> 1.45449[0.001,0.5]
14845
14846
14847
14848
Interaction: 14849/20016 Out of bounds for computation -> 0.755469[0.001,0.5]
14850
14851
14852
14853
14854
14855
Interaction: 14856/20016 Out of bounds for computation -> 0.893362[0.001,0.5]
Interaction: 14857/20016 Out of bounds for computation -> 2.51144[0.001,0.5]
14858
Interaction: 14859/20016 Out of bounds for computation -> 2.06317[0.001,0.5]
Interaction: 14860/20016 Out of bounds for computation -> 2.15198[0.001,0.5]
Interaction: 14861/20016 Out of bounds for computation -> 0.50377[0.001,0.5]
14862
Interaction: 14863/20016 Out of bounds for computation -> 1.17901[0.001,0.5]
Interaction: 14864/20016 Out of bounds for computation -> 1.47539[0.001,0.5]
14865
14866
Interaction: 14867/20016 Out of bounds for computation -> 2.27399[0.001,0.5]
Interaction: 14868/20016 Out of bounds for computation -> 0.655219[0.001,0.5]
14869
14870
Interaction: 14871/20016 Out of bounds for computation -> 0.54033[0.001,0.5]
Interaction: 14872/20016 Out of bounds for computation -> 0.585351[0.001,0.5]
Interaction: 14873/20016 Out of bounds for computation -> 2.76817[0.001,0.5]
14874
14875
Interaction: 14876/20016 Out of bounds for computation -> 1.46582[0.001,0.5]
14877
14878
Interaction: 14879/20016 Out of bounds for computation -> 0.619736[0.001,0.5]
14880
Interaction: 14881/20016 Out of bounds for computation -> 1.64729[0.001,0.5]
Interaction: 14882/20016 Out of bounds for computation -> 1.88236[0.001,0.5]
14883
14884
Interaction: 14885/20016 Out of bounds for computation -> 1.82501[0.001,0.5]
Interaction: 14886/20016 Out of bounds for computation -> 2.5206[0.001,0.5]
Interaction: 14887/20016 Out of bounds for computation -> 0.73409[0.001,0.5]
Interaction: 14888/20016 Out of bounds for computation -> 0.509115[0.001,0.5]
Interaction: 14889/20016 Out of bounds for computation -> 1.44274[0.001,0.5]
14890
Interaction: 14891/20016 Out of bounds for computation -> 0.707255[0.001,0.5]
Interaction: 14892/20016 Out of bounds for computation -> 1.12731[0.001,0.5]
Interaction: 14893/20016 Out of bounds for computation -> 0.579647[0.001,0.5]
14894
14895
14896
14897
Interaction: 14898/20016 Out of bounds for computation -> 2.06577[0.001,0.5]
Interaction: 14899/20016 Out of bounds for computation -> 1.49281[0.001,0.5]
14900
Interaction: 14901/20016 Out of bounds for computation -> 0.696262[0.001,0.5]
Interaction: 14902/20016 Out of bounds for computation -> 1.13044[0.001,0.5]
Interaction: 14903/20016 Out of bounds for computation -> 1.96139[0.001,0.5]
Interaction: 14904/20016 Out of bounds for computation -> 0.728386[0.001,0.5]
14905
Interaction: 14906/20016 Out of bounds for computation -> 0.974284[0.001,0.5]
14907
Interaction: 14908/20016 Out of bounds for computation -> 1.2576[0.001,0.5]
Interaction: 14909/20016 Out of bounds for computation -> 0.838647[0.001,0.5]
14910
14911
14912
14913
14914
14915
14916
Interaction: 14917/20016 Out of bounds for computation -> 0.698598[0.001,0.5]
14918
14919
Interaction: 14920/20016 Out of bounds for computation -> 0.565216[0.001,0.5]
Interaction: 14921/20016 Out of bounds for computation -> 0.53014[0.001,0.5]
Interaction: 14922/20016 Out of bounds for computation -> 1.25094[0.001,0.5]
14923
14924
Interaction: 14925/20016 Out of bounds for computation -> 1.46968[0.001,0.5]
Interaction: 14926/20016 Out of bounds for computation -> 1.15909[0.001,0.5]
Interaction: 14927/20016 Out of bounds for computation -> 2.86285[0.001,0.5]
14928
14929
Interaction: 14930/20016 Out of bounds for computation -> 2.05655[0.001,0.5]
14931
14932
14933
14934
14935
Interaction: 14936/20016 Out of bounds for computation -> 0.798367[0.001,0.5]
Interaction: 14937/20016 Out of bounds for computation -> 2.32263[0.001,0.5]
14938
Interaction: 14939/20016 Out of bounds for computation -> 0.577178[0.001,0.5]
14940
Interaction: 14941/20016 Out of bounds for computation -> 1.218[0.001,0.5]
14942
Interaction: 14943/20016 Out of bounds for computation -> 2.34437[0.001,0.5]
Interaction: 14944/20016 Out of bounds for computation -> 0.648538[0.001,0.5]
Interaction: 14945/20016 Out of bounds for computation -> 0.66341[0.001,0.5]
14946
14947
14948
14949
Interaction: 14950/20016 Out of bounds for computation -> 0.653385[0.001,0.5]
14951
14952
14953
14954
Interaction: 14955/20016 Out of bounds for computation -> 2.14528[0.001,0.5]
Interaction: 14956/20016 Out of bounds for computation -> 1.61305[0.001,0.5]
14957
Interaction: 14958/20016 Out of bounds for computation -> 2.2478[0.001,0.5]
14959
14960
14961
14962
14963
Interaction: 14964/20016 Out of bounds for computation -> 1.40443[0.001,0.5]
14965
14966
Interaction: 14967/20016 Out of bounds for computation -> 2.58859[0.001,0.5]
Interaction: 14968/20016 Out of bounds for computation -> 0.694184[0.001,0.5]
Interaction: 14969/20016 Out of bounds for computation -> 1.07108[0.001,0.5]
Interaction: 14970/20016 Out of bounds for computation -> 1.31135[0.001,0.5]
Interaction: 14971/20016 Out of bounds for computation -> 2.49377[0.001,0.5]
Interaction: 14972/20016 Out of bounds for computation -> 2.79941[0.001,0.5]
14973
Interaction: 14974/20016 Out of bounds for computation -> 0.897386[0.001,0.5]
14975
14976
14977
14978
14979
14980
14981
14982
Interaction: 14983/20016 Out of bounds for computation -> 1.28736[0.001,0.5]
14984
14985
Interaction: 14986/20016 Out of bounds for computation -> 0.916663[0.001,0.5]
14987
Interaction: 14988/20016 Out of bounds for computation -> 0.904627[0.001,0.5]
Interaction: 14989/20016 Out of bounds for computation -> 2.90874[0.001,0.5]
Interaction: 14990/20016 Out of bounds for computation -> 2.11031[0.001,0.5]
Interaction: 14991/20016 Out of bounds for computation -> 1.96248[0.001,0.5]
Interaction: 14992/20016 Out of bounds for computation -> 1.76846[0.001,0.5]
14993
14994
14995
Interaction: 14996/20016 Out of bounds for computation -> 2.68508[0.001,0.5]
14997
Interaction: 14998/20016 Out of bounds for computation -> 2.34494[0.001,0.5]
Interaction: 14999/20016 Out of bounds for computation -> 0.752181[0.001,0.5]
15000
Interaction: 15001/20016 Out of bounds for computation -> 0.887591[0.001,0.5]
15002
15003
15004
Interaction: 15005/20016 Out of bounds for computation -> 1.70578[0.001,0.5]
15006
15007
15008
Interaction: 15009/20016 Out of bounds for computation -> 0.667823[0.001,0.5]
15010
15011
15012
15013
15014
15015
Interaction: 15016/20016 Out of bounds for computation -> 1.51502[0.001,0.5]
Interaction: 15017/20016 Out of bounds for computation -> 0.913361[0.001,0.5]
15018
Interaction: 15019/20016 Out of bounds for computation -> 2.42084[0.001,0.5]
15020
15021
15022
Interaction: 15023/20016 Out of bounds for computation -> 2.67751[0.001,0.5]
Interaction: 15024/20016 Out of bounds for computation -> 2.40572[0.001,0.5]
15025
15026
Interaction: 15027/20016 Out of bounds for computation -> 0.861676[0.001,0.5]
Interaction: 15028/20016 Out of bounds for computation -> 0.691246[0.001,0.5]
Interaction: 15029/20016 Out of bounds for computation -> 1.11105[0.001,0.5]
15030
15031
Interaction: 15032/20016 Out of bounds for computation -> 0.641937[0.001,0.5]
15033
Interaction: 15034/20016 Out of bounds for computation -> 0.692713[0.001,0.5]
15035
Interaction: 15036/20016 Out of bounds for computation -> 2.04001[0.001,0.5]
15037
15038
15039
15040
15041
15042
15043
Interaction: 15044/20016 Out of bounds for computation -> 2.53787[0.001,0.5]
15045
15046
15047
15048
Interaction: 15049/20016 Out of bounds for computation -> 2.46244[0.001,0.5]
15050
Interaction: 15051/20016 Out of bounds for computation -> 1.39201[0.001,0.5]
Interaction: 15052/20016 Out of bounds for computation -> 1.53354[0.001,0.5]
15053
Interaction: 15054/20016 Out of bounds for computation -> 2.42013[0.001,0.5]
Interaction: 15055/20016 Out of bounds for computation -> 1.40453[0.001,0.5]
15056
Interaction: 15057/20016 Out of bounds for computation -> 2.54637[0.001,0.5]
15058
Interaction: 15059/20016 Out of bounds for computation -> 2.76171[0.001,0.5]
Interaction: 15060/20016 Out of bounds for computation -> 2.71234[0.001,0.5]
15061
15062
Interaction: 15063/20016 Out of bounds for computation -> 1.43682[0.001,0.5]
Interaction: 15064/20016 Out of bounds for computation -> 1.48263[0.001,0.5]
15065
15066
15067
Interaction: 15068/20016 Out of bounds for computation -> 1.86885[0.001,0.5]
15069
15070
Interaction: 15071/20016 Out of bounds for computation -> 0.674479[0.001,0.5]
15072
15073
15074
Interaction: 15075/20016 Out of bounds for computation -> 1.5176[0.001,0.5]
Interaction: 15076/20016 Out of bounds for computation -> 1.48744[0.001,0.5]
Interaction: 15077/20016 Out of bounds for computation -> 0.630756[0.001,0.5]
15078
Interaction: 15079/20016 Out of bounds for computation -> 1.21868[0.001,0.5]
Interaction: 15080/20016 Out of bounds for computation -> 1.17369[0.001,0.5]
Interaction: 15081/20016 Out of bounds for computation -> 1.23659[0.001,0.5]
15082
Interaction: 15083/20016 Out of bounds for computation -> 2.6992[0.001,0.5]
Interaction: 15084/20016 Out of bounds for computation -> 1.49149[0.001,0.5]
15085
Interaction: 15086/20016 Out of bounds for computation -> 1.43508[0.001,0.5]
15087
15088
15089
Interaction: 15090/20016 Out of bounds for computation -> 1.37936[0.001,0.5]
15091
15092
15093
15094
Interaction: 15095/20016 Out of bounds for computation -> 1.75092[0.001,0.5]
15096
Interaction: 15097/20016 Out of bounds for computation -> 0.73165[0.001,0.5]
15098
Interaction: 15099/20016 Out of bounds for computation -> 1.83171[0.001,0.5]
Interaction: 15100/20016 Out of bounds for computation -> 2.1532[0.001,0.5]
15101
15102
Interaction: 15103/20016 Out of bounds for computation -> 1.14183[0.001,0.5]
Interaction: 15104/20016 Out of bounds for computation -> 0.654378[0.001,0.5]
Interaction: 15105/20016 Out of bounds for computation -> 1.69067[0.001,0.5]
15106
15107
15108
15109
Interaction: 15110/20016 Out of bounds for computation -> 0.587187[0.001,0.5]
Interaction: 15111/20016 Out of bounds for computation -> 1.41741[0.001,0.5]
15112
Interaction: 15113/20016 Out of bounds for computation -> 2.42479[0.001,0.5]
15114
15115
Interaction: 15116/20016 Out of bounds for computation -> 1.72234[0.001,0.5]
15117
Interaction: 15118/20016 Out of bounds for computation -> 1.78075[0.001,0.5]
Interaction: 15119/20016 Out of bounds for computation -> 0.530428[0.001,0.5]
15120
Interaction: 15121/20016 Out of bounds for computation -> 0.627397[0.001,0.5]
15122
Interaction: 15123/20016 Out of bounds for computation -> 0.55745[0.001,0.5]
15124
Interaction: 15125/20016 Out of bounds for computation -> 2.80901[0.001,0.5]
Interaction: 15126/20016 Out of bounds for computation -> 1.0227[0.001,0.5]
15127
Interaction: 15128/20016 Out of bounds for computation -> 1.20188[0.001,0.5]
15129
Interaction: 15130/20016 Out of bounds for computation -> 2.57505[0.001,0.5]
15131
15132
15133
15134
15135
15136
15137
15138
15139
Interaction: 15140/20016 Out of bounds for computation -> 1.50133[0.001,0.5]
Interaction: 15141/20016 Out of bounds for computation -> 1.8856[0.001,0.5]
15142
15143
Interaction: 15144/20016 Out of bounds for computation -> 0.929827[0.001,0.5]
15145
15146
15147
Interaction: 15148/20016 Out of bounds for computation -> 2.68222[0.001,0.5]
15149
15150
Interaction: 15151/20016 Out of bounds for computation -> 1.6606[0.001,0.5]
15152
15153
Interaction: 15154/20016 Out of bounds for computation -> 2.14516[0.001,0.5]
15155
Interaction: 15156/20016 Out of bounds for computation -> 2.13001[0.001,0.5]
Interaction: 15157/20016 Out of bounds for computation -> 2.00479[0.001,0.5]
Interaction: 15158/20016 Out of bounds for computation -> 2.83223[0.001,0.5]
15159
Interaction: 15160/20016 Out of bounds for computation -> 2.65165[0.001,0.5]
15161
Interaction: 15162/20016 Out of bounds for computation -> 2.08079[0.001,0.5]
15163
Interaction: 15164/20016 Out of bounds for computation -> 0.761853[0.001,0.5]
15165
Interaction: 15166/20016 Out of bounds for computation -> 0.710264[0.001,0.5]
15167
15168
15169
15170
15171
Interaction: 15172/20016 Out of bounds for computation -> 1.57375[0.001,0.5]
15173
15174
15175
15176
Interaction: 15177/20016 Out of bounds for computation -> 2.6708[0.001,0.5]
Interaction: 15178/20016 Out of bounds for computation -> 1.3776[0.001,0.5]
Interaction: 15179/20016 Out of bounds for computation -> 1.04577[0.001,0.5]
15180
15181
15182
15183
15184
15185
15186
Interaction: 15187/20016 Out of bounds for computation -> 0.613696[0.001,0.5]
Interaction: 15188/20016 Out of bounds for computation -> 0.583869[0.001,0.5]
15189
Interaction: 15190/20016 Out of bounds for computation -> 1.33695[0.001,0.5]
Interaction: 15191/20016 Out of bounds for computation -> 1.44721[0.001,0.5]
15192
15193
15194
Interaction: 15195/20016 Out of bounds for computation -> 2.87942[0.001,0.5]
Interaction: 15196/20016 Out of bounds for computation -> 2.0411[0.001,0.5]
Interaction: 15197/20016 Out of bounds for computation -> 0.54471[0.001,0.5]
15198
15199
15200
15201
15202
15203
Interaction: 15204/20016 Out of bounds for computation -> 2.87614[0.001,0.5]
Interaction: 15205/20016 Out of bounds for computation -> 0.953948[0.001,0.5]
Interaction: 15206/20016 Out of bounds for computation -> 2.03939[0.001,0.5]
Interaction: 15207/20016 Out of bounds for computation -> 2.39972[0.001,0.5]
15208
15209
15210
Interaction: 15211/20016 Out of bounds for computation -> 1.50237[0.001,0.5]
15212
15213
15214
15215
Interaction: 15216/20016 Out of bounds for computation -> 2.18575[0.001,0.5]
15217
Interaction: 15218/20016 Out of bounds for computation -> 2.08387[0.001,0.5]
15219
Interaction: 15220/20016 Out of bounds for computation -> 1.94505[0.001,0.5]
15221
Interaction: 15222/20016 Out of bounds for computation -> 0.774126[0.001,0.5]
15223
15224
15225
Interaction: 15226/20016 Out of bounds for computation -> 0.667024[0.001,0.5]
15227
15228
Interaction: 15229/20016 Out of bounds for computation -> 0.530332[0.001,0.5]
Interaction: 15230/20016 Out of bounds for computation -> 1.0795[0.001,0.5]
15231
15232
15233
15234
15235
15236
15237
Interaction: 15238/20016 Out of bounds for computation -> 0.981927[0.001,0.5]
Interaction: 15239/20016 Out of bounds for computation -> 1.5237[0.001,0.5]
Interaction: 15240/20016 Out of bounds for computation -> 2.52267[0.001,0.5]
15241
15242
15243
15244
Interaction: 15245/20016 Out of bounds for computation -> 1.19334[0.001,0.5]
Interaction: 15246/20016 Out of bounds for computation -> 2.60086[0.001,0.5]
15247
Interaction: 15248/20016 Out of bounds for computation -> 1.12091[0.001,0.5]
15249
15250
15251
Interaction: 15252/20016 Out of bounds for computation -> 1.62026[0.001,0.5]
15253
15254
15255
15256
15257
Interaction: 15258/20016 Out of bounds for computation -> 1.60586[0.001,0.5]
Interaction: 15259/20016 Out of bounds for computation -> 1.06246[0.001,0.5]
Interaction: 15260/20016 Out of bounds for computation -> 2.37719[0.001,0.5]
15261
Interaction: 15262/20016 Out of bounds for computation -> 0.673548[0.001,0.5]
15263
Interaction: 15264/20016 Out of bounds for computation -> 0.678656[0.001,0.5]
15265
15266
Interaction: 15267/20016 Out of bounds for computation -> 2.62619[0.001,0.5]
15268
15269
15270
15271
15272
Interaction: 15273/20016 Out of bounds for computation -> 2.25069[0.001,0.5]
15274
15275
15276
Interaction: 15277/20016 Out of bounds for computation -> 0.7996[0.001,0.5]
15278
Interaction: 15279/20016 Out of bounds for computation -> 2.48753[0.001,0.5]
15280
Interaction: 15281/20016 Out of bounds for computation -> 1.13183[0.001,0.5]
Interaction: 15282/20016 Out of bounds for computation -> 1.10087[0.001,0.5]
15283
15284
Interaction: 15285/20016 Out of bounds for computation -> 1.51769[0.001,0.5]
Interaction: 15286/20016 Out of bounds for computation -> 1.05244[0.001,0.5]
Interaction: 15287/20016 Out of bounds for computation -> 2.42483[0.001,0.5]
15288
15289
15290
Interaction: 15291/20016 Out of bounds for computation -> 2.38259[0.001,0.5]
15292
15293
15294
Interaction: 15295/20016 Out of bounds for computation -> 2.34929[0.001,0.5]
15296
Interaction: 15297/20016 Out of bounds for computation -> 2.44059[0.001,0.5]
Interaction: 15298/20016 Out of bounds for computation -> 0.785201[0.001,0.5]
15299
15300
Interaction: 15301/20016 Out of bounds for computation -> 2.05499[0.001,0.5]
15302
Interaction: 15303/20016 Out of bounds for computation -> 0.777377[0.001,0.5]
15304
Interaction: 15305/20016 Out of bounds for computation -> 1.05862[0.001,0.5]
Interaction: 15306/20016 Out of bounds for computation -> 1.149[0.001,0.5]
15307
15308
15309
15310
15311
15312
15313
Interaction: 15314/20016 Out of bounds for computation -> 0.662056[0.001,0.5]
Interaction: 15315/20016 Out of bounds for computation -> 2.75522[0.001,0.5]
Interaction: 15316/20016 Out of bounds for computation -> 0.688833[0.001,0.5]
Interaction: 15317/20016 Out of bounds for computation -> 0.553558[0.001,0.5]
15318
Interaction: 15319/20016 Out of bounds for computation -> 1.66691[0.001,0.5]
15320
15321
15322
Interaction: 15323/20016 Out of bounds for computation -> 2.58277[0.001,0.5]
15324
15325
15326
15327
15328
Interaction: 15329/20016 Out of bounds for computation -> 1.76714[0.001,0.5]
Interaction: 15330/20016 Out of bounds for computation -> 0.755109[0.001,0.5]
Interaction: 15331/20016 Out of bounds for computation -> 2.89242[0.001,0.5]
Interaction: 15332/20016 Out of bounds for computation -> 2.53824[0.001,0.5]
15333
15334
Interaction: 15335/20016 Out of bounds for computation -> 0.805447[0.001,0.5]
15336
15337
15338
15339
Interaction: 15340/20016 Out of bounds for computation -> 0.782797[0.001,0.5]
Interaction: 15341/20016 Out of bounds for computation -> 0.802515[0.001,0.5]
15342
15343
Interaction: 15344/20016 Out of bounds for computation -> 0.562055[0.001,0.5]
Interaction: 15345/20016 Out of bounds for computation -> 2.16148[0.001,0.5]
15346
Interaction: 15347/20016 Out of bounds for computation -> 2.48468[0.001,0.5]
15348
Interaction: 15349/20016 Out of bounds for computation -> 0.501176[0.001,0.5]
Interaction: 15350/20016 Out of bounds for computation -> 2.10755[0.001,0.5]
15351
Interaction: 15352/20016 Out of bounds for computation -> 1.73308[0.001,0.5]
Interaction: 15353/20016 Out of bounds for computation -> 0.655673[0.001,0.5]
15354
15355
Interaction: 15356/20016 Out of bounds for computation -> 0.932781[0.001,0.5]
15357
Interaction: 15358/20016 Out of bounds for computation -> 2.40202[0.001,0.5]
15359
Interaction: 15360/20016 Out of bounds for computation -> 2.34404[0.001,0.5]
Interaction: 15361/20016 Out of bounds for computation -> 0.563967[0.001,0.5]
15362
15363
15364
15365
Interaction: 15366/20016 Out of bounds for computation -> 2.41602[0.001,0.5]
15367
15368
15369
Interaction: 15370/20016 Out of bounds for computation -> 0.571186[0.001,0.5]
Interaction: 15371/20016 Out of bounds for computation -> 2.88619[0.001,0.5]
15372
15373
Interaction: 15374/20016 Out of bounds for computation -> 1.34201[0.001,0.5]
Interaction: 15375/20016 Out of bounds for computation -> 0.683388[0.001,0.5]
Interaction: 15376/20016 Out of bounds for computation -> 1.24674[0.001,0.5]
15377
15378
15379
Interaction: 15380/20016 Out of bounds for computation -> 0.50389[0.001,0.5]
15381
Interaction: 15382/20016 Out of bounds for computation -> 1.42132[0.001,0.5]
15383
15384
Interaction: 15385/20016 Out of bounds for computation -> 0.579489[0.001,0.5]
Interaction: 15386/20016 Out of bounds for computation -> 0.816219[0.001,0.5]
Interaction: 15387/20016 Out of bounds for computation -> 2.17177[0.001,0.5]
Interaction: 15388/20016 Out of bounds for computation -> 2.12667[0.001,0.5]
15389
15390
15391
Interaction: 15392/20016 Out of bounds for computation -> 1.47862[0.001,0.5]
Interaction: 15393/20016 Out of bounds for computation -> 2.62547[0.001,0.5]
15394
15395
Interaction: 15396/20016 Out of bounds for computation -> 2.28703[0.001,0.5]
15397
15398
15399
15400
15401
Interaction: 15402/20016 Out of bounds for computation -> 0.536553[0.001,0.5]
15403
15404
Interaction: 15405/20016 Out of bounds for computation -> 1.44979[0.001,0.5]
Interaction: 15406/20016 Out of bounds for computation -> 2.47525[0.001,0.5]
Interaction: 15407/20016 Out of bounds for computation -> 2.45307[0.001,0.5]
15408
Interaction: 15409/20016 Out of bounds for computation -> 0.933993[0.001,0.5]
Interaction: 15410/20016 Out of bounds for computation -> 1.30752[0.001,0.5]
15411
Interaction: 15412/20016 Out of bounds for computation -> 0.701163[0.001,0.5]
Interaction: 15413/20016 Out of bounds for computation -> 2.60638[0.001,0.5]
15414
Interaction: 15415/20016 Out of bounds for computation -> 0.641189[0.001,0.5]
Interaction: 15416/20016 Out of bounds for computation -> 2.22411[0.001,0.5]
15417
Interaction: 15418/20016 Out of bounds for computation -> 2.6395[0.001,0.5]
15419
15420
Interaction: 15421/20016 Out of bounds for computation -> 0.79657[0.001,0.5]
15422
15423
15424
15425
Interaction: 15426/20016 Out of bounds for computation -> 0.889569[0.001,0.5]
Interaction: 15427/20016 Out of bounds for computation -> 1.77143[0.001,0.5]
15428
15429
15430
Interaction: 15431/20016 Out of bounds for computation -> 2.30079[0.001,0.5]
Interaction: 15432/20016 Out of bounds for computation -> 1.94036[0.001,0.5]
Interaction: 15433/20016 Out of bounds for computation -> 0.650551[0.001,0.5]
15434
15435
Interaction: 15436/20016 Out of bounds for computation -> 0.899627[0.001,0.5]
15437
Interaction: 15438/20016 Out of bounds for computation -> 2.11611[0.001,0.5]
15439
15440
15441
Interaction: 15442/20016 Out of bounds for computation -> 1.45314[0.001,0.5]
15443
Interaction: 15444/20016 Out of bounds for computation -> 0.566536[0.001,0.5]
15445
Interaction: 15446/20016 Out of bounds for computation -> 0.586117[0.001,0.5]
15447
Interaction: 15448/20016 Out of bounds for computation -> 1.60122[0.001,0.5]
Interaction: 15449/20016 Out of bounds for computation -> 2.178[0.001,0.5]
15450
Interaction: 15451/20016 Out of bounds for computation -> 2.26385[0.001,0.5]
Interaction: 15452/20016 Out of bounds for computation -> 1.06054[0.001,0.5]
15453
Interaction: 15454/20016 Out of bounds for computation -> 1.36066[0.001,0.5]
15455
15456
15457
15458
Interaction: 15459/20016 Out of bounds for computation -> 2.70479[0.001,0.5]
Interaction: 15460/20016 Out of bounds for computation -> 0.752351[0.001,0.5]
Interaction: 15461/20016 Out of bounds for computation -> 0.630548[0.001,0.5]
15462
15463
Interaction: 15464/20016 Out of bounds for computation -> 2.13405[0.001,0.5]
Interaction: 15465/20016 Out of bounds for computation -> 0.780651[0.001,0.5]
15466
15467
Interaction: 15468/20016 Out of bounds for computation -> 1.46241[0.001,0.5]
Interaction: 15469/20016 Out of bounds for computation -> 0.740965[0.001,0.5]
Interaction: 15470/20016 Out of bounds for computation -> 1.50121[0.001,0.5]
15471
15472
Interaction: 15473/20016 Out of bounds for computation -> 2.2658[0.001,0.5]
15474
Interaction: 15475/20016 Out of bounds for computation -> 2.63147[0.001,0.5]
15476
15477
15478
Interaction: 15479/20016 Out of bounds for computation -> 0.926831[0.001,0.5]
15480
Interaction: 15481/20016 Out of bounds for computation -> 2.41745[0.001,0.5]
15482
Interaction: 15483/20016 Out of bounds for computation -> 0.657335[0.001,0.5]
Interaction: 15484/20016 Out of bounds for computation -> 2.28853[0.001,0.5]
15485
Interaction: 15486/20016 Out of bounds for computation -> 0.777216[0.001,0.5]
15487
15488
15489
15490
15491
Interaction: 15492/20016 Out of bounds for computation -> 2.38501[0.001,0.5]
Interaction: 15493/20016 Out of bounds for computation -> 1.09226[0.001,0.5]
Interaction: 15494/20016 Out of bounds for computation -> 0.858438[0.001,0.5]
15495
15496
Interaction: 15497/20016 Out of bounds for computation -> 1.69643[0.001,0.5]
Interaction: 15498/20016 Out of bounds for computation -> 2.80345[0.001,0.5]
Interaction: 15499/20016 Out of bounds for computation -> 1.85343[0.001,0.5]
15500
15501
Interaction: 15502/20016 Out of bounds for computation -> 2.50808[0.001,0.5]
15503
Interaction: 15504/20016 Out of bounds for computation -> 1.56351[0.001,0.5]
Interaction: 15505/20016 Out of bounds for computation -> 2.45349[0.001,0.5]
Interaction: 15506/20016 Out of bounds for computation -> 1.37577[0.001,0.5]
15507
Interaction: 15508/20016 Out of bounds for computation -> 2.27067[0.001,0.5]
15509
15510
Interaction: 15511/20016 Out of bounds for computation -> 1.83252[0.001,0.5]
Interaction: 15512/20016 Out of bounds for computation -> 1.54986[0.001,0.5]
15513
15514
15515
Interaction: 15516/20016 Out of bounds for computation -> 1.76512[0.001,0.5]
Interaction: 15517/20016 Out of bounds for computation -> 0.5398[0.001,0.5]
Interaction: 15518/20016 Out of bounds for computation -> 0.718171[0.001,0.5]
15519
Interaction: 15520/20016 Out of bounds for computation -> 0.564793[0.001,0.5]
15521
15522
15523
15524
Interaction: 15525/20016 Out of bounds for computation -> 1.17725[0.001,0.5]
15526
Interaction: 15527/20016 Out of bounds for computation -> 2.87156[0.001,0.5]
Interaction: 15528/20016 Out of bounds for computation -> 0.621207[0.001,0.5]
Interaction: 15529/20016 Out of bounds for computation -> 2.25252[0.001,0.5]
Interaction: 15530/20016 Out of bounds for computation -> 0.720264[0.001,0.5]
Interaction: 15531/20016 Out of bounds for computation -> 2.29719[0.001,0.5]
15532
Interaction: 15533/20016 Out of bounds for computation -> 0.895452[0.001,0.5]
Interaction: 15534/20016 Out of bounds for computation -> 0.868352[0.001,0.5]
15535
15536
Interaction: 15537/20016 Out of bounds for computation -> 0.976721[0.001,0.5]
Interaction: 15538/20016 Out of bounds for computation -> 1.47294[0.001,0.5]
15539
15540
15541
15542
15543
15544
15545
15546
Interaction: 15547/20016 Out of bounds for computation -> 0.650802[0.001,0.5]
15548
15549
Interaction: 15550/20016 Out of bounds for computation -> 1.36909[0.001,0.5]
Interaction: 15551/20016 Out of bounds for computation -> 2.21284[0.001,0.5]
Interaction: 15552/20016 Out of bounds for computation -> 0.61664[0.001,0.5]
15553
Interaction: 15554/20016 Out of bounds for computation -> 1.74545[0.001,0.5]
15555
15556
15557
Interaction: 15558/20016 Out of bounds for computation -> 1.45561[0.001,0.5]
15559
Interaction: 15560/20016 Out of bounds for computation -> 2.01[0.001,0.5]
15561
15562
15563
Interaction: 15564/20016 Out of bounds for computation -> 0.60105[0.001,0.5]
15565
15566
15567
Interaction: 15568/20016 Out of bounds for computation -> 0.751517[0.001,0.5]
15569
Interaction: 15570/20016 Out of bounds for computation -> 0.680168[0.001,0.5]
Interaction: 15571/20016 Out of bounds for computation -> 1.43064[0.001,0.5]
Interaction: 15572/20016 Out of bounds for computation -> 0.654452[0.001,0.5]
15573
Interaction: 15574/20016 Out of bounds for computation -> 0.700267[0.001,0.5]
15575
Interaction: 15576/20016 Out of bounds for computation -> 1.52913[0.001,0.5]
15577
15578
Interaction: 15579/20016 Out of bounds for computation -> 2.83328[0.001,0.5]
15580
15581
15582
Interaction: 15583/20016 Out of bounds for computation -> 1.57582[0.001,0.5]
15584
Interaction: 15585/20016 Out of bounds for computation -> 0.875907[0.001,0.5]
15586
Interaction: 15587/20016 Out of bounds for computation -> 0.608767[0.001,0.5]
15588
15589
Interaction: 15590/20016 Out of bounds for computation -> 0.796892[0.001,0.5]
Interaction: 15591/20016 Out of bounds for computation -> 1.50184[0.001,0.5]
15592
15593
Interaction: 15594/20016 Out of bounds for computation -> 0.636499[0.001,0.5]
Interaction: 15595/20016 Out of bounds for computation -> 1.74678[0.001,0.5]
15596
Interaction: 15597/20016 Out of bounds for computation -> 1.31609[0.001,0.5]
15598
Interaction: 15599/20016 Out of bounds for computation -> 2.4819[0.001,0.5]
Interaction: 15600/20016 Out of bounds for computation -> 2.55862[0.001,0.5]
15601
Interaction: 15602/20016 Out of bounds for computation -> 1.88326[0.001,0.5]
Interaction: 15603/20016 Out of bounds for computation -> 0.649545[0.001,0.5]
15604
15605
15606
15607
15608
Interaction: 15609/20016 Out of bounds for computation -> 2.33501[0.001,0.5]
15610
15611
15612
15613
Interaction: 15614/20016 Out of bounds for computation -> 0.60757[0.001,0.5]
15615
Interaction: 15616/20016 Out of bounds for computation -> 2.69389[0.001,0.5]
15617
15618
Interaction: 15619/20016 Out of bounds for computation -> 1.49475[0.001,0.5]
Interaction: 15620/20016 Out of bounds for computation -> 0.656909[0.001,0.5]
15621
Interaction: 15622/20016 Out of bounds for computation -> 2.22222[0.001,0.5]
Interaction: 15623/20016 Out of bounds for computation -> 1.91641[0.001,0.5]
15624
15625
Interaction: 15626/20016 Out of bounds for computation -> 1.99187[0.001,0.5]
15627
15628
Interaction: 15629/20016 Out of bounds for computation -> 2.38443[0.001,0.5]
15630
15631
15632
15633
Interaction: 15634/20016 Out of bounds for computation -> 2.41451[0.001,0.5]
Interaction: 15635/20016 Out of bounds for computation -> 2.52806[0.001,0.5]
15636
Interaction: 15637/20016 Out of bounds for computation -> 2.07825[0.001,0.5]
15638
15639
15640
Interaction: 15641/20016 Out of bounds for computation -> 1.62326[0.001,0.5]
15642
15643
Interaction: 15644/20016 Out of bounds for computation -> 2.32506[0.001,0.5]
15645
15646
15647
15648
Interaction: 15649/20016 Out of bounds for computation -> 0.943138[0.001,0.5]
Interaction: 15650/20016 Out of bounds for computation -> 0.565601[0.001,0.5]
15651
15652
15653
Interaction: 15654/20016 Out of bounds for computation -> 2.45933[0.001,0.5]
15655
Interaction: 15656/20016 Out of bounds for computation -> 1.28969[0.001,0.5]
15657
15658
15659
Interaction: 15660/20016 Out of bounds for computation -> 0.843728[0.001,0.5]
15661
15662
15663
Interaction: 15664/20016 Out of bounds for computation -> 2.80134[0.001,0.5]
15665
15666
Interaction: 15667/20016 Out of bounds for computation -> 1.99209[0.001,0.5]
Interaction: 15668/20016 Out of bounds for computation -> 1.53934[0.001,0.5]
Interaction: 15669/20016 Out of bounds for computation -> 0.5574[0.001,0.5]
15670
15671
15672
15673
Interaction: 15674/20016 Out of bounds for computation -> 0.523235[0.001,0.5]
Interaction: 15675/20016 Out of bounds for computation -> 1.55915[0.001,0.5]
15676
15677
15678
Interaction: 15679/20016 Out of bounds for computation -> 0.531991[0.001,0.5]
15680
15681
15682
Interaction: 15683/20016 Out of bounds for computation -> 0.778365[0.001,0.5]
Interaction: 15684/20016 Out of bounds for computation -> 1.42588[0.001,0.5]
Interaction: 15685/20016 Out of bounds for computation -> 0.635918[0.001,0.5]
15686
15687
Interaction: 15688/20016 Out of bounds for computation -> 1.64128[0.001,0.5]
Interaction: 15689/20016 Out of bounds for computation -> 2.41156[0.001,0.5]
Interaction: 15690/20016 Out of bounds for computation -> 2.67534[0.001,0.5]
15691
15692
Interaction: 15693/20016 Out of bounds for computation -> 0.865988[0.001,0.5]
Interaction: 15694/20016 Out of bounds for computation -> 0.71075[0.001,0.5]
15695
15696
15697
15698
Interaction: 15699/20016 Out of bounds for computation -> 1.22925[0.001,0.5]
15700
Interaction: 15701/20016 Out of bounds for computation -> 0.514671[0.001,0.5]
Interaction: 15702/20016 Out of bounds for computation -> 2.63307[0.001,0.5]
Interaction: 15703/20016 Out of bounds for computation -> 0.987118[0.001,0.5]
Interaction: 15704/20016 Out of bounds for computation -> 1.37266[0.001,0.5]
15705
15706
Interaction: 15707/20016 Out of bounds for computation -> 0.61693[0.001,0.5]
Interaction: 15708/20016 Out of bounds for computation -> 0.739458[0.001,0.5]
15709
Interaction: 15710/20016 Out of bounds for computation -> 1.32254[0.001,0.5]
15711
15712
Interaction: 15713/20016 Out of bounds for computation -> 1.8312[0.001,0.5]
15714
15715
15716
15717
Interaction: 15718/20016 Out of bounds for computation -> 1.44726[0.001,0.5]
Interaction: 15719/20016 Out of bounds for computation -> 2.29004[0.001,0.5]
15720
15721
Interaction: 15722/20016 Out of bounds for computation -> 1.91203[0.001,0.5]
Interaction: 15723/20016 Out of bounds for computation -> 1.15869[0.001,0.5]
Interaction: 15724/20016 Out of bounds for computation -> 0.9394[0.001,0.5]
15725
Interaction: 15726/20016 Out of bounds for computation -> 1.07005[0.001,0.5]
Interaction: 15727/20016 Out of bounds for computation -> 0.575019[0.001,0.5]
15728
15729
15730
Interaction: 15731/20016 Out of bounds for computation -> 0.507436[0.001,0.5]
15732
Interaction: 15733/20016 Out of bounds for computation -> 0.854472[0.001,0.5]
Interaction: 15734/20016 Out of bounds for computation -> 0.517467[0.001,0.5]
Interaction: 15735/20016 Out of bounds for computation -> 2.17006[0.001,0.5]
Interaction: 15736/20016 Out of bounds for computation -> 1.4609[0.001,0.5]
15737
Interaction: 15738/20016 Out of bounds for computation -> 2.8097[0.001,0.5]
15739
Interaction: 15740/20016 Out of bounds for computation -> 2.38313[0.001,0.5]
15741
15742
15743
15744
15745
Interaction: 15746/20016 Out of bounds for computation -> 2.41363[0.001,0.5]
15747
15748
15749
15750
15751
15752
15753
15754
Interaction: 15755/20016 Out of bounds for computation -> 1.90423[0.001,0.5]
15756
15757
Interaction: 15758/20016 Out of bounds for computation -> 1.91816[0.001,0.5]
15759
15760
Interaction: 15761/20016 Out of bounds for computation -> 1.09246[0.001,0.5]
Interaction: 15762/20016 Out of bounds for computation -> 0.669[0.001,0.5]
Interaction: 15763/20016 Out of bounds for computation -> 0.588278[0.001,0.5]
15764
15765
Interaction: 15766/20016 Out of bounds for computation -> 0.880095[0.001,0.5]
15767
15768
Interaction: 15769/20016 Out of bounds for computation -> 2.23766[0.001,0.5]
Interaction: 15770/20016 Out of bounds for computation -> 2.55598[0.001,0.5]
15771
15772
15773
15774
15775
15776
Interaction: 15777/20016 Out of bounds for computation -> 0.601801[0.001,0.5]
15778
15779
Interaction: 15780/20016 Out of bounds for computation -> 2.03686[0.001,0.5]
Interaction: 15781/20016 Out of bounds for computation -> 1.4291[0.001,0.5]
15782
Interaction: 15783/20016 Out of bounds for computation -> 0.582392[0.001,0.5]
15784
Interaction: 15785/20016 Out of bounds for computation -> 1.79266[0.001,0.5]
15786
15787
Interaction: 15788/20016 Out of bounds for computation -> 1.51796[0.001,0.5]
15789
Interaction: 15790/20016 Out of bounds for computation -> 0.506172[0.001,0.5]
Interaction: 15791/20016 Out of bounds for computation -> 1.45115[0.001,0.5]
15792
Interaction: 15793/20016 Out of bounds for computation -> 2.641[0.001,0.5]
15794
15795
15796
Interaction: 15797/20016 Out of bounds for computation -> 2.3094[0.001,0.5]
Interaction: 15798/20016 Out of bounds for computation -> 0.602452[0.001,0.5]
Interaction: 15799/20016 Out of bounds for computation -> 0.754492[0.001,0.5]
Interaction: 15800/20016 Out of bounds for computation -> 1.54705[0.001,0.5]
Interaction: 15801/20016 Out of bounds for computation -> 0.534382[0.001,0.5]
Interaction: 15802/20016 Out of bounds for computation -> 2.59965[0.001,0.5]
15803
15804
15805
15806
15807
15808
15809
15810
15811
15812
15813
15814
Interaction: 15815/20016 Out of bounds for computation -> 0.884043[0.001,0.5]
15816
15817
15818
15819
15820
Interaction: 15821/20016 Out of bounds for computation -> 2.22996[0.001,0.5]
15822
Interaction: 15823/20016 Out of bounds for computation -> 2.40235[0.001,0.5]
Interaction: 15824/20016 Out of bounds for computation -> 1.40765[0.001,0.5]
Interaction: 15825/20016 Out of bounds for computation -> 2.72017[0.001,0.5]
Interaction: 15826/20016 Out of bounds for computation -> 0.740198[0.001,0.5]
15827
15828
15829
Interaction: 15830/20016 Out of bounds for computation -> 0.646373[0.001,0.5]
Interaction: 15831/20016 Out of bounds for computation -> 0.682512[0.001,0.5]
Interaction: 15832/20016 Out of bounds for computation -> 2.35627[0.001,0.5]
15833
Interaction: 15834/20016 Out of bounds for computation -> 0.855536[0.001,0.5]
Interaction: 15835/20016 Out of bounds for computation -> 1.28386[0.001,0.5]
15836
15837
Interaction: 15838/20016 Out of bounds for computation -> 0.520111[0.001,0.5]
Interaction: 15839/20016 Out of bounds for computation -> 2.47359[0.001,0.5]
15840
15841
15842
Interaction: 15843/20016 Out of bounds for computation -> 2.08006[0.001,0.5]
Interaction: 15844/20016 Out of bounds for computation -> 0.778311[0.001,0.5]
Interaction: 15845/20016 Out of bounds for computation -> 1.15162[0.001,0.5]
15846
15847
15848
15849
15850
15851
15852
Interaction: 15853/20016 Out of bounds for computation -> 1.84787[0.001,0.5]
15854
Interaction: 15855/20016 Out of bounds for computation -> 0.595501[0.001,0.5]
Interaction: 15856/20016 Out of bounds for computation -> 2.40951[0.001,0.5]
Interaction: 15857/20016 Out of bounds for computation -> 0.573693[0.001,0.5]
Interaction: 15858/20016 Out of bounds for computation -> 1.23903[0.001,0.5]
Interaction: 15859/20016 Out of bounds for computation -> 2.26328[0.001,0.5]
Interaction: 15860/20016 Out of bounds for computation -> 0.824434[0.001,0.5]
15861
Interaction: 15862/20016 Out of bounds for computation -> 1.58191[0.001,0.5]
Interaction: 15863/20016 Out of bounds for computation -> 1.86547[0.001,0.5]
15864
15865
15866
15867
Interaction: 15868/20016 Out of bounds for computation -> 2.25272[0.001,0.5]
15869
Interaction: 15870/20016 Out of bounds for computation -> 1.97943[0.001,0.5]
15871
15872
Interaction: 15873/20016 Out of bounds for computation -> 0.792758[0.001,0.5]
Interaction: 15874/20016 Out of bounds for computation -> 0.65347[0.001,0.5]
15875
Interaction: 15876/20016 Out of bounds for computation -> 2.10448[0.001,0.5]
15877
Interaction: 15878/20016 Out of bounds for computation -> 1.44473[0.001,0.5]
15879
Interaction: 15880/20016 Out of bounds for computation -> 2.07766[0.001,0.5]
Interaction: 15881/20016 Out of bounds for computation -> 1.60509[0.001,0.5]
Interaction: 15882/20016 Out of bounds for computation -> 0.715304[0.001,0.5]
Interaction: 15883/20016 Out of bounds for computation -> 2.27246[0.001,0.5]
15884
Interaction: 15885/20016 Out of bounds for computation -> 1.13351[0.001,0.5]
15886
Interaction: 15887/20016 Out of bounds for computation -> 1.46769[0.001,0.5]
15888
15889
15890
15891
Interaction: 15892/20016 Out of bounds for computation -> 1.57746[0.001,0.5]
Interaction: 15893/20016 Out of bounds for computation -> 0.519198[0.001,0.5]
15894
Interaction: 15895/20016 Out of bounds for computation -> 0.959632[0.001,0.5]
Interaction: 15896/20016 Out of bounds for computation -> 2.72715[0.001,0.5]
Interaction: 15897/20016 Out of bounds for computation -> 1.56126[0.001,0.5]
15898
15899
15900
Interaction: 15901/20016 Out of bounds for computation -> 2.58657[0.001,0.5]
15902
Interaction: 15903/20016 Out of bounds for computation -> 1.00411[0.001,0.5]
15904
15905
15906
Interaction: 15907/20016 Out of bounds for computation -> 2.56749[0.001,0.5]
Interaction: 15908/20016 Out of bounds for computation -> 0.505635[0.001,0.5]
Interaction: 15909/20016 Out of bounds for computation -> 0.842337[0.001,0.5]
Interaction: 15910/20016 Out of bounds for computation -> 2.49613[0.001,0.5]
15911
15912
Interaction: 15913/20016 Out of bounds for computation -> 0.528852[0.001,0.5]
15914
15915
15916
Interaction: 15917/20016 Out of bounds for computation -> 0.800034[0.001,0.5]
15918
15919
15920
15921
Interaction: 15922/20016 Out of bounds for computation -> 0.741155[0.001,0.5]
15923
15924
Interaction: 15925/20016 Out of bounds for computation -> 0.543318[0.001,0.5]
15926
15927
15928
15929
15930
15931
15932
Interaction: 15933/20016 Out of bounds for computation -> 2.12583[0.001,0.5]
Interaction: 15934/20016 Out of bounds for computation -> 0.728324[0.001,0.5]
15935
15936
Interaction: 15937/20016 Out of bounds for computation -> 1.96479[0.001,0.5]
Interaction: 15938/20016 Out of bounds for computation -> 1.19098[0.001,0.5]
15939
Interaction: 15940/20016 Out of bounds for computation -> 0.66461[0.001,0.5]
Interaction: 15941/20016 Out of bounds for computation -> 2.68378[0.001,0.5]
Interaction: 15942/20016 Out of bounds for computation -> 1.06412[0.001,0.5]
Interaction: 15943/20016 Out of bounds for computation -> 2.11163[0.001,0.5]
Interaction: 15944/20016 Out of bounds for computation -> 1.44424[0.001,0.5]
15945
15946
Interaction: 15947/20016 Out of bounds for computation -> 0.745779[0.001,0.5]
Interaction: 15948/20016 Out of bounds for computation -> 0.596855[0.001,0.5]
Interaction: 15949/20016 Out of bounds for computation -> 2.59517[0.001,0.5]
15950
15951
15952
15953
15954
Interaction: 15955/20016 Out of bounds for computation -> 1.14352[0.001,0.5]
Interaction: 15956/20016 Out of bounds for computation -> 2.31713[0.001,0.5]
15957
15958
Interaction: 15959/20016 Out of bounds for computation -> 1.46164[0.001,0.5]
Interaction: 15960/20016 Out of bounds for computation -> 0.777789[0.001,0.5]
15961
15962
15963
15964
Interaction: 15965/20016 Out of bounds for computation -> 0.717089[0.001,0.5]
15966
15967
Interaction: 15968/20016 Out of bounds for computation -> 0.817614[0.001,0.5]
15969
15970
15971
Interaction: 15972/20016 Out of bounds for computation -> 2.26265[0.001,0.5]
15973
Interaction: 15974/20016 Out of bounds for computation -> 1.45278[0.001,0.5]
Interaction: 15975/20016 Out of bounds for computation -> 1.23029[0.001,0.5]
Interaction: 15976/20016 Out of bounds for computation -> 0.704246[0.001,0.5]
15977
15978
15979
Interaction: 15980/20016 Out of bounds for computation -> 0.64029[0.001,0.5]
Interaction: 15981/20016 Out of bounds for computation -> 1.40369[0.001,0.5]
Interaction: 15982/20016 Out of bounds for computation -> 2.09814[0.001,0.5]
Interaction: 15983/20016 Out of bounds for computation -> 1.47263[0.001,0.5]
Interaction: 15984/20016 Out of bounds for computation -> 1.55042[0.001,0.5]
15985
Interaction: 15986/20016 Out of bounds for computation -> 0.617388[0.001,0.5]
15987
Interaction: 15988/20016 Out of bounds for computation -> 2.62668[0.001,0.5]
Interaction: 15989/20016 Out of bounds for computation -> 0.503603[0.001,0.5]
Interaction: 15990/20016 Out of bounds for computation -> 1.77417[0.001,0.5]
Interaction: 15991/20016 Out of bounds for computation -> 0.766405[0.001,0.5]
15992
15993
15994
15995
15996
Interaction: 15997/20016 Out of bounds for computation -> 0.977713[0.001,0.5]
15998
Interaction: 15999/20016 Out of bounds for computation -> 1.94547[0.001,0.5]
16000
Interaction: 16001/20016 Out of bounds for computation -> 1.5288[0.001,0.5]
16002
16003
16004
16005
Interaction: 16006/20016 Out of bounds for computation -> 2.36508[0.001,0.5]
Interaction: 16007/20016 Out of bounds for computation -> 1.39054[0.001,0.5]
16008
Interaction: 16009/20016 Out of bounds for computation -> 2.72159[0.001,0.5]
16010
16011
Interaction: 16012/20016 Out of bounds for computation -> 2.69204[0.001,0.5]
16013
16014
16015
16016
16017
16018
Interaction: 16019/20016 Out of bounds for computation -> 2.50456[0.001,0.5]
Interaction: 16020/20016 Out of bounds for computation -> 0.514538[0.001,0.5]
Interaction: 16021/20016 Out of bounds for computation -> 0.641963[0.001,0.5]
16022
16023
Interaction: 16024/20016 Out of bounds for computation -> 0.999093[0.001,0.5]
Interaction: 16025/20016 Out of bounds for computation -> 2.80298[0.001,0.5]
Interaction: 16026/20016 Out of bounds for computation -> 2.69759[0.001,0.5]
Interaction: 16027/20016 Out of bounds for computation -> 1.34764[0.001,0.5]
16028
16029
Interaction: 16030/20016 Out of bounds for computation -> 1.50338[0.001,0.5]
Interaction: 16031/20016 Out of bounds for computation -> 0.774911[0.001,0.5]
16032
Interaction: 16033/20016 Out of bounds for computation -> 1.48535[0.001,0.5]
16034
16035
16036
Interaction: 16037/20016 Out of bounds for computation -> 0.933697[0.001,0.5]
Interaction: 16038/20016 Out of bounds for computation -> 0.809822[0.001,0.5]
16039
16040
Interaction: 16041/20016 Out of bounds for computation -> 0.52993[0.001,0.5]
Interaction: 16042/20016 Out of bounds for computation -> 0.561047[0.001,0.5]
Interaction: 16043/20016 Out of bounds for computation -> 0.954913[0.001,0.5]
16044
Interaction: 16045/20016 Out of bounds for computation -> 1.62865[0.001,0.5]
16046
Interaction: 16047/20016 Out of bounds for computation -> 2.54986[0.001,0.5]
16048
16049
16050
16051
16052
16053
Interaction: 16054/20016 Out of bounds for computation -> 1.45512[0.001,0.5]
Interaction: 16055/20016 Out of bounds for computation -> 2.5291[0.001,0.5]
16056
16057
16058
16059
16060
Interaction: 16061/20016 Out of bounds for computation -> 0.724136[0.001,0.5]
16062
16063
16064
Interaction: 16065/20016 Out of bounds for computation -> 1.43742[0.001,0.5]
Interaction: 16066/20016 Out of bounds for computation -> 0.659339[0.001,0.5]
Interaction: 16067/20016 Out of bounds for computation -> 1.95317[0.001,0.5]
16068
16069
Interaction: 16070/20016 Out of bounds for computation -> 0.782285[0.001,0.5]
Interaction: 16071/20016 Out of bounds for computation -> 2.87365[0.001,0.5]
16072
16073
16074
16075
16076
Interaction: 16077/20016 Out of bounds for computation -> 0.840935[0.001,0.5]
Interaction: 16078/20016 Out of bounds for computation -> 0.671818[0.001,0.5]
16079
16080
Interaction: 16081/20016 Out of bounds for computation -> 0.726905[0.001,0.5]
16082
Interaction: 16083/20016 Out of bounds for computation -> 1.50806[0.001,0.5]
16084
16085
16086
16087
16088
Interaction: 16089/20016 Out of bounds for computation -> 2.23069[0.001,0.5]
16090
16091
Interaction: 16092/20016 Out of bounds for computation -> 0.55721[0.001,0.5]
Interaction: 16093/20016 Out of bounds for computation -> 2.10637[0.001,0.5]
16094
16095
Interaction: 16096/20016 Out of bounds for computation -> 1.971[0.001,0.5]
Interaction: 16097/20016 Out of bounds for computation -> 1.26551[0.001,0.5]
Interaction: 16098/20016 Out of bounds for computation -> 1.23948[0.001,0.5]
16099
16100
16101
16102
Interaction: 16103/20016 Out of bounds for computation -> 0.703683[0.001,0.5]
16104
16105
16106
Interaction: 16107/20016 Out of bounds for computation -> 1.51843[0.001,0.5]
Interaction: 16108/20016 Out of bounds for computation -> 1.79885[0.001,0.5]
Interaction: 16109/20016 Out of bounds for computation -> 0.519186[0.001,0.5]
16110
Interaction: 16111/20016 Out of bounds for computation -> 1.43364[0.001,0.5]
16112
16113
16114
16115
Interaction: 16116/20016 Out of bounds for computation -> 0.533597[0.001,0.5]
16117
16118
Interaction: 16119/20016 Out of bounds for computation -> 0.843963[0.001,0.5]
Interaction: 16120/20016 Out of bounds for computation -> 0.693845[0.001,0.5]
16121
16122
Interaction: 16123/20016 Out of bounds for computation -> 2.2332[0.001,0.5]
Interaction: 16124/20016 Out of bounds for computation -> 0.891923[0.001,0.5]
16125
Interaction: 16126/20016 Out of bounds for computation -> 0.956326[0.001,0.5]
16127
16128
16129
Interaction: 16130/20016 Out of bounds for computation -> 0.64786[0.001,0.5]
16131
Interaction: 16132/20016 Out of bounds for computation -> 0.817156[0.001,0.5]
16133
Interaction: 16134/20016 Out of bounds for computation -> 1.49226[0.001,0.5]
16135
16136
Interaction: 16137/20016 Out of bounds for computation -> 0.820511[0.001,0.5]
16138
16139
Interaction: 16140/20016 Out of bounds for computation -> 1.17683[0.001,0.5]
Interaction: 16141/20016 Out of bounds for computation -> 2.73287[0.001,0.5]
16142
16143
16144
16145
16146
Interaction: 16147/20016 Out of bounds for computation -> 0.829895[0.001,0.5]
Interaction: 16148/20016 Out of bounds for computation -> 0.604812[0.001,0.5]
16149
16150
Interaction: 16151/20016 Out of bounds for computation -> 0.664541[0.001,0.5]
16152
Interaction: 16153/20016 Out of bounds for computation -> 0.679969[0.001,0.5]
Interaction: 16154/20016 Out of bounds for computation -> 1.40165[0.001,0.5]
16155
16156
Interaction: 16157/20016 Out of bounds for computation -> 0.580865[0.001,0.5]
16158
Interaction: 16159/20016 Out of bounds for computation -> 0.648095[0.001,0.5]
Interaction: 16160/20016 Out of bounds for computation -> 0.953612[0.001,0.5]
Interaction: 16161/20016 Out of bounds for computation -> 1.46412[0.001,0.5]
Interaction: 16162/20016 Out of bounds for computation -> 1.08925[0.001,0.5]
16163
Interaction: 16164/20016 Out of bounds for computation -> 2.48787[0.001,0.5]
Interaction: 16165/20016 Out of bounds for computation -> 0.77736[0.001,0.5]
16166
16167
Interaction: 16168/20016 Out of bounds for computation -> 0.638139[0.001,0.5]
Interaction: 16169/20016 Out of bounds for computation -> 0.724232[0.001,0.5]
Interaction: 16170/20016 Out of bounds for computation -> 0.85202[0.001,0.5]
16171
16172
Interaction: 16173/20016 Out of bounds for computation -> 0.691649[0.001,0.5]
16174
Interaction: 16175/20016 Out of bounds for computation -> 2.01185[0.001,0.5]
Interaction: 16176/20016 Out of bounds for computation -> 1.12197[0.001,0.5]
16177
Interaction: 16178/20016 Out of bounds for computation -> 2.40208[0.001,0.5]
16179
16180
16181
16182
16183
16184
Interaction: 16185/20016 Out of bounds for computation -> 2.3143[0.001,0.5]
Interaction: 16186/20016 Out of bounds for computation -> 1.80577[0.001,0.5]
Interaction: 16187/20016 Out of bounds for computation -> 0.797035[0.001,0.5]
16188
16189
Interaction: 16190/20016 Out of bounds for computation -> 1.7501[0.001,0.5]
16191
Interaction: 16192/20016 Out of bounds for computation -> 0.622426[0.001,0.5]
16193
Interaction: 16194/20016 Out of bounds for computation -> 0.622537[0.001,0.5]
Interaction: 16195/20016 Out of bounds for computation -> 1.12616[0.001,0.5]
16196
Interaction: 16197/20016 Out of bounds for computation -> 1.36556[0.001,0.5]
16198
Interaction: 16199/20016 Out of bounds for computation -> 2.8436[0.001,0.5]
Interaction: 16200/20016 Out of bounds for computation -> 0.871198[0.001,0.5]
16201
16202
16203
16204
Interaction: 16205/20016 Out of bounds for computation -> 1.68802[0.001,0.5]
Interaction: 16206/20016 Out of bounds for computation -> 2.10763[0.001,0.5]
16207
16208
Interaction: 16209/20016 Out of bounds for computation -> 2.39752[0.001,0.5]
16210
Interaction: 16211/20016 Out of bounds for computation -> 1.61587[0.001,0.5]
16212
16213
16214
16215
Interaction: 16216/20016 Out of bounds for computation -> 0.795776[0.001,0.5]
Interaction: 16217/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 16218/20016 Out of bounds for computation -> 2.28668[0.001,0.5]
Interaction: 16219/20016 Out of bounds for computation -> 0.87736[0.001,0.5]
16220
Interaction: 16221/20016 Out of bounds for computation -> nan[0.001,0.5]
16222
Interaction: 16223/20016 Out of bounds for computation -> 0.610613[0.001,0.5]
16224
Interaction: 16225/20016 Out of bounds for computation -> 0.779551[0.001,0.5]
16226
16227
Interaction: 16228/20016 Out of bounds for computation -> 0.657827[0.001,0.5]
Interaction: 16229/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 16230/20016 Out of bounds for computation -> nan[0.001,0.5]
16231
Interaction: 16232/20016 Out of bounds for computation -> 0.831598[0.001,0.5]
Interaction: 16233/20016 Out of bounds for computation -> 0.992171[0.001,0.5]
16234
16235
Interaction: 16236/20016 Out of bounds for computation -> 1.86094[0.001,0.5]
Interaction: 16237/20016 Out of bounds for computation -> 0.620878[0.001,0.5]
Interaction: 16238/20016 Out of bounds for computation -> 0.575108[0.001,0.5]
16239
16240
Interaction: 16241/20016 Out of bounds for computation -> 0.840208[0.001,0.5]
Interaction: 16242/20016 Out of bounds for computation -> 2.26076[0.001,0.5]
16243
16244
Interaction: 16245/20016 Out of bounds for computation -> 0.628604[0.001,0.5]
Interaction: 16246/20016 Out of bounds for computation -> 1.44673[0.001,0.5]
16247
Interaction: 16248/20016 Out of bounds for computation -> nan[0.001,0.5]
16249
16250
Interaction: 16251/20016 Out of bounds for computation -> 1.92794[0.001,0.5]
Interaction: 16252/20016 Out of bounds for computation -> 1.44764[0.001,0.5]
16253
Interaction: 16254/20016 Out of bounds for computation -> 1.0255[0.001,0.5]
Interaction: 16255/20016 Out of bounds for computation -> 2.2489[0.001,0.5]
16256
16257
16258
16259
Interaction: 16260/20016 Out of bounds for computation -> 1.97206[0.001,0.5]
Interaction: 16261/20016 Out of bounds for computation -> 2.37538[0.001,0.5]
Interaction: 16262/20016 Out of bounds for computation -> 0.745734[0.001,0.5]
16263
Interaction: 16264/20016 Out of bounds for computation -> 1.21137[0.001,0.5]
16265
16266
Interaction: 16267/20016 Out of bounds for computation -> 1.00755[0.001,0.5]
Interaction: 16268/20016 Out of bounds for computation -> 2.78316[0.001,0.5]
Interaction: 16269/20016 Out of bounds for computation -> 0.702295[0.001,0.5]
Interaction: 16270/20016 Out of bounds for computation -> 0.621456[0.001,0.5]
16271
Interaction: 16272/20016 Out of bounds for computation -> nan[0.001,0.5]
16273
Interaction: 16274/20016 Out of bounds for computation -> 1.19976[0.001,0.5]
16275
16276
Interaction: 16277/20016 Out of bounds for computation -> 1.44605[0.001,0.5]
16278
16279
16280
Interaction: 16281/20016 Out of bounds for computation -> 0.598502[0.001,0.5]
16282
16283
Interaction: 16284/20016 Out of bounds for computation -> 2.12007[0.001,0.5]
Interaction: 16285/20016 Out of bounds for computation -> 2.40936[0.001,0.5]
16286
Interaction: 16287/20016 Out of bounds for computation -> 0.609246[0.001,0.5]
16288
Interaction: 16289/20016 Out of bounds for computation -> 0.784695[0.001,0.5]
16290
Interaction: 16291/20016 Out of bounds for computation -> 0.941333[0.001,0.5]
Interaction: 16292/20016 Out of bounds for computation -> 2.55927[0.001,0.5]
16293
16294
Interaction: 16295/20016 Out of bounds for computation -> 0.783064[0.001,0.5]
16296
16297
Interaction: 16298/20016 Out of bounds for computation -> 1.65407[0.001,0.5]
16299
Interaction: 16300/20016 Out of bounds for computation -> 0.753844[0.001,0.5]
16301
Interaction: 16302/20016 Out of bounds for computation -> 0.535621[0.001,0.5]
Interaction: 16303/20016 Out of bounds for computation -> 0.632938[0.001,0.5]
Interaction: 16304/20016 Out of bounds for computation -> 1.46827[0.001,0.5]
16305
16306
16307
Interaction: 16308/20016 Out of bounds for computation -> 0.884142[0.001,0.5]
16309
Interaction: 16310/20016 Out of bounds for computation -> 2.04732[0.001,0.5]
16311
Interaction: 16312/20016 Out of bounds for computation -> 2.09996[0.001,0.5]
Interaction: 16313/20016 Out of bounds for computation -> 0.647399[0.001,0.5]
Interaction: 16314/20016 Out of bounds for computation -> 0.561183[0.001,0.5]
16315
Interaction: 16316/20016 Out of bounds for computation -> 1.79943[0.001,0.5]
16317
16318
16319
Interaction: 16320/20016 Out of bounds for computation -> 0.831641[0.001,0.5]
Interaction: 16321/20016 Out of bounds for computation -> 2.81605[0.001,0.5]
Interaction: 16322/20016 Out of bounds for computation -> 0.991432[0.001,0.5]
Interaction: 16323/20016 Out of bounds for computation -> nan[0.001,0.5]
16324
16325
16326
16327
Interaction: 16328/20016 Out of bounds for computation -> 2.95101[0.001,0.5]
Interaction: 16329/20016 Out of bounds for computation -> 1.48224[0.001,0.5]
16330
Interaction: 16331/20016 Out of bounds for computation -> nan[0.001,0.5]
16332
16333
16334
16335
16336
16337
16338
Interaction: 16339/20016 Out of bounds for computation -> 2.31573[0.001,0.5]
Interaction: 16340/20016 Out of bounds for computation -> 0.714814[0.001,0.5]
16341
16342
Interaction: 16343/20016 Out of bounds for computation -> 2.20227[0.001,0.5]
Interaction: 16344/20016 Out of bounds for computation -> 0.86758[0.001,0.5]
16345
16346
Interaction: 16347/20016 Out of bounds for computation -> nan[0.001,0.5]
16348
Interaction: 16349/20016 Out of bounds for computation -> 1.69836[0.001,0.5]
16350
Interaction: 16351/20016 Out of bounds for computation -> 0.910726[0.001,0.5]
Interaction: 16352/20016 Out of bounds for computation -> 1.44892[0.001,0.5]
Interaction: 16353/20016 Out of bounds for computation -> 2.85657[0.001,0.5]
16354
16355
Interaction: 16356/20016 Out of bounds for computation -> 1.65757[0.001,0.5]
16357
16358
Interaction: 16359/20016 Out of bounds for computation -> 2.88126[0.001,0.5]
Interaction: 16360/20016 Out of bounds for computation -> 1.81069[0.001,0.5]
16361
16362
Interaction: 16363/20016 Out of bounds for computation -> 1.3983[0.001,0.5]
Interaction: 16364/20016 Out of bounds for computation -> 1.51795[0.001,0.5]
16365
Interaction: 16366/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 16367/20016 Out of bounds for computation -> 0.504119[0.001,0.5]
16368
Interaction: 16369/20016 Out of bounds for computation -> 0.970857[0.001,0.5]
16370
16371
Interaction: 16372/20016 Out of bounds for computation -> 0.808601[0.001,0.5]
Interaction: 16373/20016 Out of bounds for computation -> 1.18135[0.001,0.5]
16374
Interaction: 16375/20016 Out of bounds for computation -> 2.54689[0.001,0.5]
Interaction: 16376/20016 Out of bounds for computation -> 2.08481[0.001,0.5]
Interaction: 16377/20016 Out of bounds for computation -> 1.60612[0.001,0.5]
Interaction: 16378/20016 Out of bounds for computation -> 0.51254[0.001,0.5]
16379
16380
Interaction: 16381/20016 Out of bounds for computation -> 0.828017[0.001,0.5]
Interaction: 16382/20016 Out of bounds for computation -> nan[0.001,0.5]
16383
Interaction: 16384/20016 Out of bounds for computation -> 2.27562[0.001,0.5]
Interaction: 16385/20016 Out of bounds for computation -> nan[0.001,0.5]
16386
16387
16388
16389
16390
Interaction: 16391/20016 Out of bounds for computation -> 0.976488[0.001,0.5]
Interaction: 16392/20016 Out of bounds for computation -> 0.763531[0.001,0.5]
Interaction: 16393/20016 Out of bounds for computation -> 2.16902[0.001,0.5]
16394
Interaction: 16395/20016 Out of bounds for computation -> 0.592477[0.001,0.5]
16396
Interaction: 16397/20016 Out of bounds for computation -> 1.93203[0.001,0.5]
16398
Interaction: 16399/20016 Out of bounds for computation -> 0.563818[0.001,0.5]
Interaction: 16400/20016 Out of bounds for computation -> 0.729993[0.001,0.5]
16401
16402
Interaction: 16403/20016 Out of bounds for computation -> 0.865355[0.001,0.5]
Interaction: 16404/20016 Out of bounds for computation -> nan[0.001,0.5]
16405
16406
Interaction: 16407/20016 Out of bounds for computation -> 0.830804[0.001,0.5]
Interaction: 16408/20016 Out of bounds for computation -> 2.22357[0.001,0.5]
16409
Interaction: 16410/20016 Out of bounds for computation -> 1.25612[0.001,0.5]
Interaction: 16411/20016 Out of bounds for computation -> 0.716966[0.001,0.5]
16412
16413
Interaction: 16414/20016 Out of bounds for computation -> 2.12904[0.001,0.5]
Interaction: 16415/20016 Out of bounds for computation -> nan[0.001,0.5]
16416
Interaction: 16417/20016 Out of bounds for computation -> 0.515376[0.001,0.5]
16418
16419
16420
Interaction: 16421/20016 Out of bounds for computation -> nan[0.001,0.5]
16422
16423
Interaction: 16424/20016 Out of bounds for computation -> 0.728151[0.001,0.5]
Interaction: 16425/20016 Out of bounds for computation -> 0.503382[0.001,0.5]
16426
Interaction: 16427/20016 Out of bounds for computation -> 2.31259[0.001,0.5]
16428
16429
Interaction: 16430/20016 Out of bounds for computation -> 1.52562[0.001,0.5]
16431
16432
16433
Interaction: 16434/20016 Out of bounds for computation -> 0.839193[0.001,0.5]
Interaction: 16435/20016 Out of bounds for computation -> 1.81585[0.001,0.5]
Interaction: 16436/20016 Out of bounds for computation -> 2.37459[0.001,0.5]
16437
Interaction: 16438/20016 Out of bounds for computation -> 1.24743[0.001,0.5]
Interaction: 16439/20016 Out of bounds for computation -> nan[0.001,0.5]
16440
16441
16442
16443
16444
16445
16446
Interaction: 16447/20016 Out of bounds for computation -> 1.39591[0.001,0.5]
Interaction: 16448/20016 Out of bounds for computation -> 0.580831[0.001,0.5]
16449
16450
16451
16452
16453
Interaction: 16454/20016 Out of bounds for computation -> 2.02719[0.001,0.5]
16455
16456
16457
16458
Interaction: 16459/20016 Out of bounds for computation -> 0.578427[0.001,0.5]
16460
16461
Interaction: 16462/20016 Out of bounds for computation -> 2.09417[0.001,0.5]
16463
16464
16465
16466
Interaction: 16467/20016 Out of bounds for computation -> 1.42831[0.001,0.5]
Interaction: 16468/20016 Out of bounds for computation -> 1.61998[0.001,0.5]
16469
16470
16471
Interaction: 16472/20016 Out of bounds for computation -> 0.571499[0.001,0.5]
Interaction: 16473/20016 Out of bounds for computation -> 2.53606[0.001,0.5]
16474
Interaction: 16475/20016 Out of bounds for computation -> 1.96731[0.001,0.5]
Interaction: 16476/20016 Out of bounds for computation -> 0.60012[0.001,0.5]
16477
Interaction: 16478/20016 Out of bounds for computation -> 0.675668[0.001,0.5]
16479
16480
Interaction: 16481/20016 Out of bounds for computation -> 0.784125[0.001,0.5]
16482
Interaction: 16483/20016 Out of bounds for computation -> 0.871982[0.001,0.5]
16484
16485
16486
16487
16488
Interaction: 16489/20016 Out of bounds for computation -> 0.673798[0.001,0.5]
16490
Interaction: 16491/20016 Out of bounds for computation -> 0.626616[0.001,0.5]
16492
16493
16494
Interaction: 16495/20016 Out of bounds for computation -> 0.535949[0.001,0.5]
16496
16497
Interaction: 16498/20016 Out of bounds for computation -> 3.05928[0.001,0.5]
Interaction: 16499/20016 Out of bounds for computation -> 0.648213[0.001,0.5]
16500
Interaction: 16501/20016 Out of bounds for computation -> 2.73624[0.001,0.5]
16502
Interaction: 16503/20016 Out of bounds for computation -> 0.627034[0.001,0.5]
16504
Interaction: 16505/20016 Out of bounds for computation -> 1.90962[0.001,0.5]
Interaction: 16506/20016 Out of bounds for computation -> 0.741068[0.001,0.5]
16507
16508
Interaction: 16509/20016 Out of bounds for computation -> 1.69597[0.001,0.5]
Interaction: 16510/20016 Out of bounds for computation -> 2.53239[0.001,0.5]
16511
Interaction: 16512/20016 Out of bounds for computation -> 1.90784[0.001,0.5]
Interaction: 16513/20016 Out of bounds for computation -> 1.50782[0.001,0.5]
16514
16515
Interaction: 16516/20016 Out of bounds for computation -> 1.943[0.001,0.5]
16517
16518
Interaction: 16519/20016 Out of bounds for computation -> 0.724966[0.001,0.5]
16520
16521
Interaction: 16522/20016 Out of bounds for computation -> 0.962839[0.001,0.5]
Interaction: 16523/20016 Out of bounds for computation -> 0.583651[0.001,0.5]
16524
16525
16526
16527
16528
16529
Interaction: 16530/20016 Out of bounds for computation -> nan[0.001,0.5]
16531
Interaction: 16532/20016 Out of bounds for computation -> 1.50949[0.001,0.5]
16533
Interaction: 16534/20016 Out of bounds for computation -> 1.84337[0.001,0.5]
Interaction: 16535/20016 Out of bounds for computation -> 0.649614[0.001,0.5]
16536
16537
16538
16539
16540
Interaction: 16541/20016 Out of bounds for computation -> 2.07967[0.001,0.5]
16542
Interaction: 16543/20016 Out of bounds for computation -> 1.61041[0.001,0.5]
16544
16545
Interaction: 16546/20016 Out of bounds for computation -> 1.74351[0.001,0.5]
16547
Interaction: 16548/20016 Out of bounds for computation -> 2.03857[0.001,0.5]
16549
16550
Interaction: 16551/20016 Out of bounds for computation -> 0.850596[0.001,0.5]
Interaction: 16552/20016 Out of bounds for computation -> 1.16758[0.001,0.5]
16553
16554
Interaction: 16555/20016 Out of bounds for computation -> 2.86483[0.001,0.5]
16556
Interaction: 16557/20016 Out of bounds for computation -> 0.730052[0.001,0.5]
16558
Interaction: 16559/20016 Out of bounds for computation -> 1.02581[0.001,0.5]
16560
16561
16562
16563
Interaction: 16564/20016 Out of bounds for computation -> 1.41669[0.001,0.5]
Interaction: 16565/20016 Out of bounds for computation -> 1.7402[0.001,0.5]
Interaction: 16566/20016 Out of bounds for computation -> 1.78684[0.001,0.5]
16567
16568
16569
16570
16571
16572
16573
Interaction: 16574/20016 Out of bounds for computation -> 1.10717[0.001,0.5]
16575
Interaction: 16576/20016 Out of bounds for computation -> 0.816439[0.001,0.5]
Interaction: 16577/20016 Out of bounds for computation -> 2.18019[0.001,0.5]
Interaction: 16578/20016 Out of bounds for computation -> 0.727746[0.001,0.5]
16579
Interaction: 16580/20016 Out of bounds for computation -> 0.850607[0.001,0.5]
Interaction: 16581/20016 Out of bounds for computation -> 2.30939[0.001,0.5]
Interaction: 16582/20016 Out of bounds for computation -> 1.02523[0.001,0.5]
Interaction: 16583/20016 Out of bounds for computation -> 1.45935[0.001,0.5]
Interaction: 16584/20016 Out of bounds for computation -> 2.18476[0.001,0.5]
16585
16586
16587
16588
Interaction: 16589/20016 Out of bounds for computation -> 1.16159[0.001,0.5]
16590
Interaction: 16591/20016 Out of bounds for computation -> 1.71928[0.001,0.5]
16592
16593
16594
Interaction: 16595/20016 Out of bounds for computation -> nan[0.001,0.5]
16596
Interaction: 16597/20016 Out of bounds for computation -> 1.73202[0.001,0.5]
Interaction: 16598/20016 Out of bounds for computation -> 1.10436[0.001,0.5]
Interaction: 16599/20016 Out of bounds for computation -> 1.28252[0.001,0.5]
16600
Interaction: 16601/20016 Out of bounds for computation -> 1.70317[0.001,0.5]
Interaction: 16602/20016 Out of bounds for computation -> 1.77168[0.001,0.5]
16603
16604
16605
16606
16607
16608
16609
16610
Interaction: 16611/20016 Out of bounds for computation -> 1.54197[0.001,0.5]
16612
Interaction: 16613/20016 Out of bounds for computation -> 2.21915[0.001,0.5]
Interaction: 16614/20016 Out of bounds for computation -> 1.09877[0.001,0.5]
Interaction: 16615/20016 Out of bounds for computation -> 1.08537[0.001,0.5]
16616
16617
16618
16619
16620
Interaction: 16621/20016 Out of bounds for computation -> 0.790181[0.001,0.5]
Interaction: 16622/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 16623/20016 Out of bounds for computation -> 1.23647[0.001,0.5]
16624
16625
Interaction: 16626/20016 Out of bounds for computation -> 2.66202[0.001,0.5]
16627
16628
Interaction: 16629/20016 Out of bounds for computation -> 0.779924[0.001,0.5]
16630
16631
Interaction: 16632/20016 Out of bounds for computation -> 0.659788[0.001,0.5]
Interaction: 16633/20016 Out of bounds for computation -> 0.934675[0.001,0.5]
Interaction: 16634/20016 Out of bounds for computation -> 1.56368[0.001,0.5]
Interaction: 16635/20016 Out of bounds for computation -> 0.54405[0.001,0.5]
Interaction: 16636/20016 Out of bounds for computation -> 0.72282[0.001,0.5]
16637
Interaction: 16638/20016 Out of bounds for computation -> 2.44642[0.001,0.5]
16639
Interaction: 16640/20016 Out of bounds for computation -> 2.28635[0.001,0.5]
16641
Interaction: 16642/20016 Out of bounds for computation -> 0.86008[0.001,0.5]
Interaction: 16643/20016 Out of bounds for computation -> nan[0.001,0.5]
16644
16645
16646
Interaction: 16647/20016 Out of bounds for computation -> 0.782662[0.001,0.5]
Interaction: 16648/20016 Out of bounds for computation -> 2.56299[0.001,0.5]
16649
Interaction: 16650/20016 Out of bounds for computation -> 0.743775[0.001,0.5]
Interaction: 16651/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 16652/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 16653/20016 Out of bounds for computation -> 1.95676[0.001,0.5]
16654
Interaction: 16655/20016 Out of bounds for computation -> nan[0.001,0.5]
16656
Interaction: 16657/20016 Out of bounds for computation -> 0.820897[0.001,0.5]
16658
16659
16660
16661
Interaction: 16662/20016 Out of bounds for computation -> 0.683681[0.001,0.5]
16663
16664
16665
Interaction: 16666/20016 Out of bounds for computation -> 1.74823[0.001,0.5]
16667
Interaction: 16668/20016 Out of bounds for computation -> 2.6028[0.001,0.5]
16669
Interaction: 16670/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 16671/20016 Out of bounds for computation -> 1.22215[0.001,0.5]
Interaction: 16672/20016 Out of bounds for computation -> 1.58852[0.001,0.5]
Interaction: 16673/20016 Out of bounds for computation -> 2.34836[0.001,0.5]
16674
Interaction: 16675/20016 Out of bounds for computation -> 1.42468[0.001,0.5]
Interaction: 16676/20016 Out of bounds for computation -> 0.524388[0.001,0.5]
16677
16678
Interaction: 16679/20016 Out of bounds for computation -> 0.517537[0.001,0.5]
16680
16681
16682
Interaction: 16683/20016 Out of bounds for computation -> 0.854023[0.001,0.5]
16684
16685
16686
Interaction: 16687/20016 Out of bounds for computation -> 1.62427[0.001,0.5]
Interaction: 16688/20016 Out of bounds for computation -> 2.39581[0.001,0.5]
Interaction: 16689/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 16690/20016 Out of bounds for computation -> 1.28664[0.001,0.5]
Interaction: 16691/20016 Out of bounds for computation -> 1.68452[0.001,0.5]
Interaction: 16692/20016 Out of bounds for computation -> 1.67614[0.001,0.5]
Interaction: 16693/20016 Out of bounds for computation -> 0.86706[0.001,0.5]
16694
Interaction: 16695/20016 Out of bounds for computation -> 2.05429[0.001,0.5]
16696
Interaction: 16697/20016 Out of bounds for computation -> 2.05561[0.001,0.5]
Interaction: 16698/20016 Out of bounds for computation -> 0.872962[0.001,0.5]
Interaction: 16699/20016 Out of bounds for computation -> 0.933289[0.001,0.5]
Interaction: 16700/20016 Out of bounds for computation -> 0.506927[0.001,0.5]
Interaction: 16701/20016 Out of bounds for computation -> 0.759532[0.001,0.5]
16702
Interaction: 16703/20016 Out of bounds for computation -> 2.92051[0.001,0.5]
16704
Interaction: 16705/20016 Out of bounds for computation -> 0.583288[0.001,0.5]
Interaction: 16706/20016 Out of bounds for computation -> 2.13077[0.001,0.5]
Interaction: 16707/20016 Out of bounds for computation -> 1.46983[0.001,0.5]
16708
16709
Interaction: 16710/20016 Out of bounds for computation -> 1.50209[0.001,0.5]
16711
16712
Interaction: 16713/20016 Out of bounds for computation -> 2.49869[0.001,0.5]
Interaction: 16714/20016 Out of bounds for computation -> 1.78364[0.001,0.5]
Interaction: 16715/20016 Out of bounds for computation -> 0.502559[0.001,0.5]
Interaction: 16716/20016 Out of bounds for computation -> nan[0.001,0.5]
16717
Interaction: 16718/20016 Out of bounds for computation -> 0.892838[0.001,0.5]
Interaction: 16719/20016 Out of bounds for computation -> 0.799788[0.001,0.5]
Interaction: 16720/20016 Out of bounds for computation -> 0.914757[0.001,0.5]
16721
16722
Interaction: 16723/20016 Out of bounds for computation -> 2.92887[0.001,0.5]
Interaction: 16724/20016 Out of bounds for computation -> 1.40784[0.001,0.5]
16725
16726
Interaction: 16727/20016 Out of bounds for computation -> 1.73726[0.001,0.5]
16728
16729
Interaction: 16730/20016 Out of bounds for computation -> 0.556385[0.001,0.5]
16731
16732
Interaction: 16733/20016 Out of bounds for computation -> 1.60507[0.001,0.5]
Interaction: 16734/20016 Out of bounds for computation -> 0.807307[0.001,0.5]
16735
Interaction: 16736/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 16737/20016 Out of bounds for computation -> 1.43653[0.001,0.5]
16738
Interaction: 16739/20016 Out of bounds for computation -> 2.62198[0.001,0.5]
16740
Interaction: 16741/20016 Out of bounds for computation -> 0.747509[0.001,0.5]
16742
Interaction: 16743/20016 Out of bounds for computation -> 0.658378[0.001,0.5]
Interaction: 16744/20016 Out of bounds for computation -> 1.49256[0.001,0.5]
16745
16746
Interaction: 16747/20016 Out of bounds for computation -> 0.635266[0.001,0.5]
16748
16749
Interaction: 16750/20016 Out of bounds for computation -> 1.48545[0.001,0.5]
Interaction: 16751/20016 Out of bounds for computation -> 2.3957[0.001,0.5]
Interaction: 16752/20016 Out of bounds for computation -> 1.63528[0.001,0.5]
Interaction: 16753/20016 Out of bounds for computation -> 0.610349[0.001,0.5]
Interaction: 16754/20016 Out of bounds for computation -> 0.673133[0.001,0.5]
Interaction: 16755/20016 Out of bounds for computation -> 0.913781[0.001,0.5]
16756
16757
Interaction: 16758/20016 Out of bounds for computation -> 1.10063[0.001,0.5]
16759
Interaction: 16760/20016 Out of bounds for computation -> 2.62472[0.001,0.5]
16761
Interaction: 16762/20016 Out of bounds for computation -> 0.873947[0.001,0.5]
16763
Interaction: 16764/20016 Out of bounds for computation -> 1.45063[0.001,0.5]
Interaction: 16765/20016 Out of bounds for computation -> 1.16184[0.001,0.5]
16766
16767
16768
16769
Interaction: 16770/20016 Out of bounds for computation -> 2.20582[0.001,0.5]
16771
Interaction: 16772/20016 Out of bounds for computation -> 1.78873[0.001,0.5]
16773
16774
Interaction: 16775/20016 Out of bounds for computation -> 1.49713[0.001,0.5]
16776
Interaction: 16777/20016 Out of bounds for computation -> 2.59116[0.001,0.5]
Interaction: 16778/20016 Out of bounds for computation -> 0.584905[0.001,0.5]
16779
16780
16781
16782
Interaction: 16783/20016 Out of bounds for computation -> 1.44752[0.001,0.5]
16784
Interaction: 16785/20016 Out of bounds for computation -> 0.743362[0.001,0.5]
16786
16787
16788
Interaction: 16789/20016 Out of bounds for computation -> 0.835375[0.001,0.5]
16790
16791
Interaction: 16792/20016 Out of bounds for computation -> nan[0.001,0.5]
16793
16794
Interaction: 16795/20016 Out of bounds for computation -> 1.6989[0.001,0.5]
16796
Interaction: 16797/20016 Out of bounds for computation -> 1.40268[0.001,0.5]
16798
16799
Interaction: 16800/20016 Out of bounds for computation -> 2.17744[0.001,0.5]
16801
16802
Interaction: 16803/20016 Out of bounds for computation -> 1.00897[0.001,0.5]
Interaction: 16804/20016 Out of bounds for computation -> 0.628928[0.001,0.5]
Interaction: 16805/20016 Out of bounds for computation -> 0.515006[0.001,0.5]
16806
Interaction: 16807/20016 Out of bounds for computation -> 0.583549[0.001,0.5]
16808
16809
16810
Interaction: 16811/20016 Out of bounds for computation -> 2.55798[0.001,0.5]
16812
16813
Interaction: 16814/20016 Out of bounds for computation -> 1.53398[0.001,0.5]
16815
Interaction: 16816/20016 Out of bounds for computation -> 1.03314[0.001,0.5]
16817
Interaction: 16818/20016 Out of bounds for computation -> 0.598561[0.001,0.5]
Interaction: 16819/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 16820/20016 Out of bounds for computation -> 1.44253[0.001,0.5]
Interaction: 16821/20016 Out of bounds for computation -> 0.613046[0.001,0.5]
Interaction: 16822/20016 Out of bounds for computation -> 2.50022[0.001,0.5]
Interaction: 16823/20016 Out of bounds for computation -> 0.704486[0.001,0.5]
16824
16825
16826
16827
16828
16829
Interaction: 16830/20016 Out of bounds for computation -> 0.688773[0.001,0.5]
16831
16832
16833
Interaction: 16834/20016 Out of bounds for computation -> 1.09174[0.001,0.5]
Interaction: 16835/20016 Out of bounds for computation -> 0.664793[0.001,0.5]
16836
Interaction: 16837/20016 Out of bounds for computation -> 0.546158[0.001,0.5]
Interaction: 16838/20016 Out of bounds for computation -> 1.26918[0.001,0.5]
16839
Interaction: 16840/20016 Out of bounds for computation -> 1.19477[0.001,0.5]
Interaction: 16841/20016 Out of bounds for computation -> 0.621591[0.001,0.5]
16842
16843
16844
16845
16846
Interaction: 16847/20016 Out of bounds for computation -> 1.72878[0.001,0.5]
Interaction: 16848/20016 Out of bounds for computation -> 2.23268[0.001,0.5]
Interaction: 16849/20016 Out of bounds for computation -> 1.98529[0.001,0.5]
16850
16851
Interaction: 16852/20016 Out of bounds for computation -> nan[0.001,0.5]
16853
16854
Interaction: 16855/20016 Out of bounds for computation -> 1.47921[0.001,0.5]
16856
Interaction: 16857/20016 Out of bounds for computation -> 0.780561[0.001,0.5]
16858
16859
Interaction: 16860/20016 Out of bounds for computation -> 0.61833[0.001,0.5]
16861
Interaction: 16862/20016 Out of bounds for computation -> 1.50121[0.001,0.5]
Interaction: 16863/20016 Out of bounds for computation -> 1.48527[0.001,0.5]
Interaction: 16864/20016 Out of bounds for computation -> 1.4324[0.001,0.5]
16865
Interaction: 16866/20016 Out of bounds for computation -> 1.51227[0.001,0.5]
16867
Interaction: 16868/20016 Out of bounds for computation -> 1.27501[0.001,0.5]
Interaction: 16869/20016 Out of bounds for computation -> 0.553927[0.001,0.5]
16870
Interaction: 16871/20016 Out of bounds for computation -> 2.80845[0.001,0.5]
16872
16873
Interaction: 16874/20016 Out of bounds for computation -> 0.65806[0.001,0.5]
Interaction: 16875/20016 Out of bounds for computation -> 0.712504[0.001,0.5]
16876
16877
16878
16879
16880
16881
16882
16883
Interaction: 16884/20016 Out of bounds for computation -> 0.747673[0.001,0.5]
16885
16886
16887
16888
Interaction: 16889/20016 Out of bounds for computation -> 2.06254[0.001,0.5]
16890
Interaction: 16891/20016 Out of bounds for computation -> 1.4311[0.001,0.5]
Interaction: 16892/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 16893/20016 Out of bounds for computation -> 1.76856[0.001,0.5]
Interaction: 16894/20016 Out of bounds for computation -> 1.30304[0.001,0.5]
16895
Interaction: 16896/20016 Out of bounds for computation -> 0.78773[0.001,0.5]
Interaction: 16897/20016 Out of bounds for computation -> 0.927822[0.001,0.5]
16898
16899
Interaction: 16900/20016 Out of bounds for computation -> 1.54259[0.001,0.5]
16901
16902
Interaction: 16903/20016 Out of bounds for computation -> 2.03583[0.001,0.5]
16904
Interaction: 16905/20016 Out of bounds for computation -> 0.816577[0.001,0.5]
16906
16907
16908
16909
16910
Interaction: 16911/20016 Out of bounds for computation -> 1.53419[0.001,0.5]
16912
Interaction: 16913/20016 Out of bounds for computation -> 2.44261[0.001,0.5]
Interaction: 16914/20016 Out of bounds for computation -> 1.45722[0.001,0.5]
Interaction: 16915/20016 Out of bounds for computation -> 1.54327[0.001,0.5]
16916
16917
16918
16919
16920
Interaction: 16921/20016 Out of bounds for computation -> 1.90274[0.001,0.5]
16922
16923
Interaction: 16924/20016 Out of bounds for computation -> 0.887972[0.001,0.5]
Interaction: 16925/20016 Out of bounds for computation -> 0.683355[0.001,0.5]
Interaction: 16926/20016 Out of bounds for computation -> 1.78015[0.001,0.5]
Interaction: 16927/20016 Out of bounds for computation -> 2.25881[0.001,0.5]
Interaction: 16928/20016 Out of bounds for computation -> 1.4864[0.001,0.5]
Interaction: 16929/20016 Out of bounds for computation -> 2.10183[0.001,0.5]
16930
16931
16932
16933
16934
Interaction: 16935/20016 Out of bounds for computation -> 2.45355[0.001,0.5]
16936
16937
16938
Interaction: 16939/20016 Out of bounds for computation -> 0.62434[0.001,0.5]
16940
16941
16942
Interaction: 16943/20016 Out of bounds for computation -> 1.98037[0.001,0.5]
16944
Interaction: 16945/20016 Out of bounds for computation -> 2.84203[0.001,0.5]
Interaction: 16946/20016 Out of bounds for computation -> 0.80783[0.001,0.5]
Interaction: 16947/20016 Out of bounds for computation -> 1.31753[0.001,0.5]
Interaction: 16948/20016 Out of bounds for computation -> 1.97466[0.001,0.5]
16949
Interaction: 16950/20016 Out of bounds for computation -> 1.13895[0.001,0.5]
16951
Interaction: 16952/20016 Out of bounds for computation -> 1.6996[0.001,0.5]
16953
16954
16955
Interaction: 16956/20016 Out of bounds for computation -> 0.548866[0.001,0.5]
16957
16958
16959
16960
Interaction: 16961/20016 Out of bounds for computation -> 0.546337[0.001,0.5]
16962
16963
Interaction: 16964/20016 Out of bounds for computation -> 1.88738[0.001,0.5]
Interaction: 16965/20016 Out of bounds for computation -> 1.7332[0.001,0.5]
16966
16967
Interaction: 16968/20016 Out of bounds for computation -> 0.668734[0.001,0.5]
Interaction: 16969/20016 Out of bounds for computation -> 0.607344[0.001,0.5]
16970
16971
Interaction: 16972/20016 Out of bounds for computation -> 0.616473[0.001,0.5]
16973
Interaction: 16974/20016 Out of bounds for computation -> 1.49742[0.001,0.5]
Interaction: 16975/20016 Out of bounds for computation -> 1.47288[0.001,0.5]
Interaction: 16976/20016 Out of bounds for computation -> nan[0.001,0.5]
16977
Interaction: 16978/20016 Out of bounds for computation -> 1.89595[0.001,0.5]
16979
16980
16981
16982
16983
16984
16985
16986
Interaction: 16987/20016 Out of bounds for computation -> 0.525303[0.001,0.5]
Interaction: 16988/20016 Out of bounds for computation -> 0.648594[0.001,0.5]
Interaction: 16989/20016 Out of bounds for computation -> 0.76473[0.001,0.5]
Interaction: 16990/20016 Out of bounds for computation -> 2.29032[0.001,0.5]
Interaction: 16991/20016 Out of bounds for computation -> 0.607235[0.001,0.5]
16992
16993
Interaction: 16994/20016 Out of bounds for computation -> 0.547396[0.001,0.5]
16995
16996
16997
16998
16999
17000
17001
17002
17003
Interaction: 17004/20016 Out of bounds for computation -> 1.97938[0.001,0.5]
Interaction: 17005/20016 Out of bounds for computation -> 0.590236[0.001,0.5]
17006
17007
17008
17009
17010
Interaction: 17011/20016 Out of bounds for computation -> 1.49911[0.001,0.5]
17012
17013
Interaction: 17014/20016 Out of bounds for computation -> 2.36269[0.001,0.5]
17015
Interaction: 17016/20016 Out of bounds for computation -> 2.59935[0.001,0.5]
17017
Interaction: 17018/20016 Out of bounds for computation -> 1.30156[0.001,0.5]
17019
Interaction: 17020/20016 Out of bounds for computation -> nan[0.001,0.5]
17021
Interaction: 17022/20016 Out of bounds for computation -> 0.65479[0.001,0.5]
17023
17024
17025
Interaction: 17026/20016 Out of bounds for computation -> 0.648241[0.001,0.5]
17027
17028
Interaction: 17029/20016 Out of bounds for computation -> 1.15272[0.001,0.5]
Interaction: 17030/20016 Out of bounds for computation -> 0.830516[0.001,0.5]
17031
17032
17033
17034
17035
Interaction: 17036/20016 Out of bounds for computation -> 0.699306[0.001,0.5]
Interaction: 17037/20016 Out of bounds for computation -> 1.43573[0.001,0.5]
17038
Interaction: 17039/20016 Out of bounds for computation -> 1.28371[0.001,0.5]
17040
17041
Interaction: 17042/20016 Out of bounds for computation -> 0.654618[0.001,0.5]
Interaction: 17043/20016 Out of bounds for computation -> 1.74141[0.001,0.5]
Interaction: 17044/20016 Out of bounds for computation -> 0.58584[0.001,0.5]
Interaction: 17045/20016 Out of bounds for computation -> 2.65862[0.001,0.5]
Interaction: 17046/20016 Out of bounds for computation -> 1.49187[0.001,0.5]
Interaction: 17047/20016 Out of bounds for computation -> 2.69429[0.001,0.5]
Interaction: 17048/20016 Out of bounds for computation -> 1.93665[0.001,0.5]
17049
Interaction: 17050/20016 Out of bounds for computation -> 1.34411[0.001,0.5]
17051
Interaction: 17052/20016 Out of bounds for computation -> 0.689785[0.001,0.5]
Interaction: 17053/20016 Out of bounds for computation -> 1.54807[0.001,0.5]
17054
17055
17056
17057
Interaction: 17058/20016 Out of bounds for computation -> 1.17145[0.001,0.5]
17059
17060
17061
17062
17063
Interaction: 17064/20016 Out of bounds for computation -> 0.922473[0.001,0.5]
Interaction: 17065/20016 Out of bounds for computation -> 0.580949[0.001,0.5]
17066
Interaction: 17067/20016 Out of bounds for computation -> 0.846066[0.001,0.5]
Interaction: 17068/20016 Out of bounds for computation -> 1.04084[0.001,0.5]
17069
Interaction: 17070/20016 Out of bounds for computation -> 2.3732[0.001,0.5]
17071
17072
Interaction: 17073/20016 Out of bounds for computation -> 2.05998[0.001,0.5]
17074
Interaction: 17075/20016 Out of bounds for computation -> 1.53574[0.001,0.5]
Interaction: 17076/20016 Out of bounds for computation -> 0.96931[0.001,0.5]
Interaction: 17077/20016 Out of bounds for computation -> 1.30314[0.001,0.5]
Interaction: 17078/20016 Out of bounds for computation -> 0.842934[0.001,0.5]
Interaction: 17079/20016 Out of bounds for computation -> 0.825702[0.001,0.5]
Interaction: 17080/20016 Out of bounds for computation -> 2.24862[0.001,0.5]
17081
17082
17083
Interaction: 17084/20016 Out of bounds for computation -> 0.628793[0.001,0.5]
17085
17086
Interaction: 17087/20016 Out of bounds for computation -> 0.63509[0.001,0.5]
Interaction: 17088/20016 Out of bounds for computation -> 0.726025[0.001,0.5]
17089
Interaction: 17090/20016 Out of bounds for computation -> 0.781508[0.001,0.5]
17091
Interaction: 17092/20016 Out of bounds for computation -> 1.58543[0.001,0.5]
Interaction: 17093/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 17094/20016 Out of bounds for computation -> 2.29828[0.001,0.5]
17095
17096
17097
17098
17099
Interaction: 17100/20016 Out of bounds for computation -> 2.93339[0.001,0.5]
Interaction: 17101/20016 Out of bounds for computation -> 1.00333[0.001,0.5]
Interaction: 17102/20016 Out of bounds for computation -> 2.23058[0.001,0.5]
Interaction: 17103/20016 Out of bounds for computation -> 1.04167[0.001,0.5]
17104
17105
17106
Interaction: 17107/20016 Out of bounds for computation -> 0.797895[0.001,0.5]
17108
Interaction: 17109/20016 Out of bounds for computation -> 1.46059[0.001,0.5]
Interaction: 17110/20016 Out of bounds for computation -> 0.530225[0.001,0.5]
17111
Interaction: 17112/20016 Out of bounds for computation -> 1.96147[0.001,0.5]
17113
Interaction: 17114/20016 Out of bounds for computation -> 2.17086[0.001,0.5]
17115
17116
17117
17118
Interaction: 17119/20016 Out of bounds for computation -> 0.848025[0.001,0.5]
17120
Interaction: 17121/20016 Out of bounds for computation -> 1.84968[0.001,0.5]
Interaction: 17122/20016 Out of bounds for computation -> 1.43082[0.001,0.5]
Interaction: 17123/20016 Out of bounds for computation -> 1.80873[0.001,0.5]
Interaction: 17124/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 17125/20016 Out of bounds for computation -> 2.10925[0.001,0.5]
Interaction: 17126/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 17127/20016 Out of bounds for computation -> 2.63502[0.001,0.5]
17128
17129
17130
17131
17132
Interaction: 17133/20016 Out of bounds for computation -> 0.835029[0.001,0.5]
17134
Interaction: 17135/20016 Out of bounds for computation -> 0.752573[0.001,0.5]
Interaction: 17136/20016 Out of bounds for computation -> 1.43535[0.001,0.5]
17137
17138
Interaction: 17139/20016 Out of bounds for computation -> 0.833995[0.001,0.5]
Interaction: 17140/20016 Out of bounds for computation -> 0.873434[0.001,0.5]
17141
17142
Interaction: 17143/20016 Out of bounds for computation -> 1.492[0.001,0.5]
17144
17145
17146
17147
Interaction: 17148/20016 Out of bounds for computation -> 1.51645[0.001,0.5]
Interaction: 17149/20016 Out of bounds for computation -> 0.868359[0.001,0.5]
Interaction: 17150/20016 Out of bounds for computation -> 0.903466[0.001,0.5]
17151
17152
Interaction: 17153/20016 Out of bounds for computation -> 0.670211[0.001,0.5]
Interaction: 17154/20016 Out of bounds for computation -> 2.84224[0.001,0.5]
17155
17156
Interaction: 17157/20016 Out of bounds for computation -> 0.762589[0.001,0.5]
17158
Interaction: 17159/20016 Out of bounds for computation -> nan[0.001,0.5]
17160
17161
Interaction: 17162/20016 Out of bounds for computation -> 0.5722[0.001,0.5]
17163
17164
Interaction: 17165/20016 Out of bounds for computation -> 1.98438[0.001,0.5]
Interaction: 17166/20016 Out of bounds for computation -> 2.14757[0.001,0.5]
17167
17168
17169
Interaction: 17170/20016 Out of bounds for computation -> 1.81233[0.001,0.5]
17171
17172
17173
17174
17175
17176
Interaction: 17177/20016 Out of bounds for computation -> 2.37708[0.001,0.5]
17178
Interaction: 17179/20016 Out of bounds for computation -> 2.0687[0.001,0.5]
Interaction: 17180/20016 Out of bounds for computation -> 0.565622[0.001,0.5]
17181
Interaction: 17182/20016 Out of bounds for computation -> 0.904115[0.001,0.5]
17183
17184
Interaction: 17185/20016 Out of bounds for computation -> 2.7902[0.001,0.5]
17186
Interaction: 17187/20016 Out of bounds for computation -> 0.895404[0.001,0.5]
Interaction: 17188/20016 Out of bounds for computation -> 0.698738[0.001,0.5]
Interaction: 17189/20016 Out of bounds for computation -> 0.573394[0.001,0.5]
17190
17191
17192
17193
17194
17195
17196
Interaction: 17197/20016 Out of bounds for computation -> 0.688256[0.001,0.5]
Interaction: 17198/20016 Out of bounds for computation -> 1.98086[0.001,0.5]
Interaction: 17199/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 17200/20016 Out of bounds for computation -> nan[0.001,0.5]
17201
Interaction: 17202/20016 Out of bounds for computation -> 1.41172[0.001,0.5]
Interaction: 17203/20016 Out of bounds for computation -> 2.31032[0.001,0.5]
17204
Interaction: 17205/20016 Out of bounds for computation -> 0.520008[0.001,0.5]
Interaction: 17206/20016 Out of bounds for computation -> 1.90688[0.001,0.5]
Interaction: 17207/20016 Out of bounds for computation -> 0.603189[0.001,0.5]
Interaction: 17208/20016 Out of bounds for computation -> 1.19056[0.001,0.5]
Interaction: 17209/20016 Out of bounds for computation -> 0.525038[0.001,0.5]
Interaction: 17210/20016 Out of bounds for computation -> nan[0.001,0.5]
17211
Interaction: 17212/20016 Out of bounds for computation -> 0.948034[0.001,0.5]
17213
17214
17215
Interaction: 17216/20016 Out of bounds for computation -> 0.734534[0.001,0.5]
17217
Interaction: 17218/20016 Out of bounds for computation -> 0.544312[0.001,0.5]
17219
17220
17221
17222
Interaction: 17223/20016 Out of bounds for computation -> 0.827063[0.001,0.5]
17224
Interaction: 17225/20016 Out of bounds for computation -> 2.15361[0.001,0.5]
Interaction: 17226/20016 Out of bounds for computation -> 0.895856[0.001,0.5]
17227
17228
17229
Interaction: 17230/20016 Out of bounds for computation -> 0.672651[0.001,0.5]
Interaction: 17231/20016 Out of bounds for computation -> 1.23268[0.001,0.5]
17232
17233
Interaction: 17234/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 17235/20016 Out of bounds for computation -> 1.71649[0.001,0.5]
17236
17237
17238
17239
17240
17241
Interaction: 17242/20016 Out of bounds for computation -> 0.72521[0.001,0.5]
Interaction: 17243/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 17244/20016 Out of bounds for computation -> 0.855408[0.001,0.5]
17245
17246
17247
Interaction: 17248/20016 Out of bounds for computation -> 0.746096[0.001,0.5]
Interaction: 17249/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 17250/20016 Out of bounds for computation -> 0.913248[0.001,0.5]
17251
17252
Interaction: 17253/20016 Out of bounds for computation -> 2.37147[0.001,0.5]
Interaction: 17254/20016 Out of bounds for computation -> 1.47018[0.001,0.5]
Interaction: 17255/20016 Out of bounds for computation -> 0.524769[0.001,0.5]
Interaction: 17256/20016 Out of bounds for computation -> 0.687139[0.001,0.5]
17257
Interaction: 17258/20016 Out of bounds for computation -> 0.837995[0.001,0.5]
Interaction: 17259/20016 Out of bounds for computation -> nan[0.001,0.5]
17260
Interaction: 17261/20016 Out of bounds for computation -> 0.748172[0.001,0.5]
17262
Interaction: 17263/20016 Out of bounds for computation -> 1.67413[0.001,0.5]
Interaction: 17264/20016 Out of bounds for computation -> 0.867697[0.001,0.5]
17265
17266
17267
Interaction: 17268/20016 Out of bounds for computation -> 0.627287[0.001,0.5]
Interaction: 17269/20016 Out of bounds for computation -> 0.837951[0.001,0.5]
17270
17271
Interaction: 17272/20016 Out of bounds for computation -> 0.800434[0.001,0.5]
Interaction: 17273/20016 Out of bounds for computation -> 2.26869[0.001,0.5]
Interaction: 17274/20016 Out of bounds for computation -> 2.07843[0.001,0.5]
17275
Interaction: 17276/20016 Out of bounds for computation -> 2.53336[0.001,0.5]
17277
17278
Interaction: 17279/20016 Out of bounds for computation -> 1.80172[0.001,0.5]
17280
Interaction: 17281/20016 Out of bounds for computation -> 0.979281[0.001,0.5]
17282
Interaction: 17283/20016 Out of bounds for computation -> 0.513437[0.001,0.5]
Interaction: 17284/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 17285/20016 Out of bounds for computation -> 0.752288[0.001,0.5]
17286
17287
Interaction: 17288/20016 Out of bounds for computation -> 1.42796[0.001,0.5]
17289
Interaction: 17290/20016 Out of bounds for computation -> 0.613377[0.001,0.5]
17291
17292
17293
Interaction: 17294/20016 Out of bounds for computation -> 2.31723[0.001,0.5]
Interaction: 17295/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 17296/20016 Out of bounds for computation -> 1.47652[0.001,0.5]
17297
Interaction: 17298/20016 Out of bounds for computation -> 1.41826[0.001,0.5]
17299
17300
17301
Interaction: 17302/20016 Out of bounds for computation -> 1.2089[0.001,0.5]
Interaction: 17303/20016 Out of bounds for computation -> 0.685146[0.001,0.5]
Interaction: 17304/20016 Out of bounds for computation -> 0.75513[0.001,0.5]
17305
17306
17307
Interaction: 17308/20016 Out of bounds for computation -> 0.57328[0.001,0.5]
Interaction: 17309/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 17310/20016 Out of bounds for computation -> 0.784647[0.001,0.5]
17311
Interaction: 17312/20016 Out of bounds for computation -> 1.67211[0.001,0.5]
Interaction: 17313/20016 Out of bounds for computation -> 0.850033[0.001,0.5]
Interaction: 17314/20016 Out of bounds for computation -> 0.815838[0.001,0.5]
17315
17316
17317
Interaction: 17318/20016 Out of bounds for computation -> 0.608145[0.001,0.5]
17319
17320
Interaction: 17321/20016 Out of bounds for computation -> 1.21672[0.001,0.5]
17322
17323
17324
17325
Interaction: 17326/20016 Out of bounds for computation -> 0.685698[0.001,0.5]
17327
Interaction: 17328/20016 Out of bounds for computation -> 0.773367[0.001,0.5]
Interaction: 17329/20016 Out of bounds for computation -> 1.52638[0.001,0.5]
Interaction: 17330/20016 Out of bounds for computation -> 2.23018[0.001,0.5]
Interaction: 17331/20016 Out of bounds for computation -> 0.505646[0.001,0.5]
17332
Interaction: 17333/20016 Out of bounds for computation -> 1.97335[0.001,0.5]
Interaction: 17334/20016 Out of bounds for computation -> 0.533937[0.001,0.5]
Interaction: 17335/20016 Out of bounds for computation -> 2.02477[0.001,0.5]
17336
17337
Interaction: 17338/20016 Out of bounds for computation -> 1.45316[0.001,0.5]
Interaction: 17339/20016 Out of bounds for computation -> 1.84398[0.001,0.5]
17340
Interaction: 17341/20016 Out of bounds for computation -> 1.49994[0.001,0.5]
17342
17343
Interaction: 17344/20016 Out of bounds for computation -> 1.66082[0.001,0.5]
17345
Interaction: 17346/20016 Out of bounds for computation -> 0.663608[0.001,0.5]
17347
Interaction: 17348/20016 Out of bounds for computation -> 0.718911[0.001,0.5]
Interaction: 17349/20016 Out of bounds for computation -> 1.46117[0.001,0.5]
Interaction: 17350/20016 Out of bounds for computation -> 2.01028[0.001,0.5]
Interaction: 17351/20016 Out of bounds for computation -> 1.43448[0.001,0.5]
17352
Interaction: 17353/20016 Out of bounds for computation -> 1.71017[0.001,0.5]
Interaction: 17354/20016 Out of bounds for computation -> 0.552813[0.001,0.5]
Interaction: 17355/20016 Out of bounds for computation -> 0.500525[0.001,0.5]
Interaction: 17356/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 17357/20016 Out of bounds for computation -> 0.658891[0.001,0.5]
Interaction: 17358/20016 Out of bounds for computation -> 0.837526[0.001,0.5]
17359
17360
17361
Interaction: 17362/20016 Out of bounds for computation -> 0.7686[0.001,0.5]
17363
Interaction: 17364/20016 Out of bounds for computation -> 2.00921[0.001,0.5]
Interaction: 17365/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 17366/20016 Out of bounds for computation -> 0.918332[0.001,0.5]
17367
17368
Interaction: 17369/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 17370/20016 Out of bounds for computation -> 0.815184[0.001,0.5]
Interaction: 17371/20016 Out of bounds for computation -> nan[0.001,0.5]
17372
Interaction: 17373/20016 Out of bounds for computation -> 1.3993[0.001,0.5]
Interaction: 17374/20016 Out of bounds for computation -> 2.26113[0.001,0.5]
Interaction: 17375/20016 Out of bounds for computation -> 2.21616[0.001,0.5]
17376
Interaction: 17377/20016 Out of bounds for computation -> 1.53924[0.001,0.5]
17378
17379
17380
17381
17382
Interaction: 17383/20016 Out of bounds for computation -> 0.75784[0.001,0.5]
17384
17385
Interaction: 17386/20016 Out of bounds for computation -> 0.921045[0.001,0.5]
Interaction: 17387/20016 Out of bounds for computation -> 0.630286[0.001,0.5]
17388
Interaction: 17389/20016 Out of bounds for computation -> 0.525738[0.001,0.5]
Interaction: 17390/20016 Out of bounds for computation -> 1.53238[0.001,0.5]
17391
Interaction: 17392/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 17393/20016 Out of bounds for computation -> 0.67558[0.001,0.5]
17394
17395
17396
Interaction: 17397/20016 Out of bounds for computation -> 1.4287[0.001,0.5]
Interaction: 17398/20016 Out of bounds for computation -> nan[0.001,0.5]
17399
17400
Interaction: 17401/20016 Out of bounds for computation -> 0.719483[0.001,0.5]
17402
Interaction: 17403/20016 Out of bounds for computation -> 1.73103[0.001,0.5]
Interaction: 17404/20016 Out of bounds for computation -> 1.49763[0.001,0.5]
17405
17406
17407
17408
17409
Interaction: 17410/20016 Out of bounds for computation -> 1.48659[0.001,0.5]
17411
17412
17413
Interaction: 17414/20016 Out of bounds for computation -> 1.63844[0.001,0.5]
Interaction: 17415/20016 Out of bounds for computation -> 2.77408[0.001,0.5]
Interaction: 17416/20016 Out of bounds for computation -> 1.87225[0.001,0.5]
17417
Interaction: 17418/20016 Out of bounds for computation -> 2.71163[0.001,0.5]
Interaction: 17419/20016 Out of bounds for computation -> 0.8653[0.001,0.5]
Interaction: 17420/20016 Out of bounds for computation -> 0.793505[0.001,0.5]
Interaction: 17421/20016 Out of bounds for computation -> 0.541694[0.001,0.5]
17422
17423
17424
Interaction: 17425/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 17426/20016 Out of bounds for computation -> 1.92224[0.001,0.5]
Interaction: 17427/20016 Out of bounds for computation -> 1.46532[0.001,0.5]
17428
Interaction: 17429/20016 Out of bounds for computation -> 1.3971[0.001,0.5]
Interaction: 17430/20016 Out of bounds for computation -> 0.672666[0.001,0.5]
Interaction: 17431/20016 Out of bounds for computation -> 1.27684[0.001,0.5]
17432
17433
17434
Interaction: 17435/20016 Out of bounds for computation -> 0.865352[0.001,0.5]
Interaction: 17436/20016 Out of bounds for computation -> 2.74332[0.001,0.5]
Interaction: 17437/20016 Out of bounds for computation -> 0.678396[0.001,0.5]
Interaction: 17438/20016 Out of bounds for computation -> 0.751633[0.001,0.5]
Interaction: 17439/20016 Out of bounds for computation -> 2.64876[0.001,0.5]
Interaction: 17440/20016 Out of bounds for computation -> 0.570954[0.001,0.5]
Interaction: 17441/20016 Out of bounds for computation -> 0.737015[0.001,0.5]
Interaction: 17442/20016 Out of bounds for computation -> 1.56549[0.001,0.5]
17443
17444
Interaction: 17445/20016 Out of bounds for computation -> 0.518752[0.001,0.5]
Interaction: 17446/20016 Out of bounds for computation -> 1.42112[0.001,0.5]
Interaction: 17447/20016 Out of bounds for computation -> 1.46867[0.001,0.5]
17448
Interaction: 17449/20016 Out of bounds for computation -> nan[0.001,0.5]
17450
17451
17452
Interaction: 17453/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 17454/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 17455/20016 Out of bounds for computation -> 0.862296[0.001,0.5]
17456
17457
Interaction: 17458/20016 Out of bounds for computation -> 1.47648[0.001,0.5]
Interaction: 17459/20016 Out of bounds for computation -> 0.838132[0.001,0.5]
17460
17461
Interaction: 17462/20016 Out of bounds for computation -> 1.51936[0.001,0.5]
Interaction: 17463/20016 Out of bounds for computation -> 0.79225[0.001,0.5]
17464
17465
17466
17467
17468
17469
17470
17471
Interaction: 17472/20016 Out of bounds for computation -> 1.59563[0.001,0.5]
17473
17474
17475
17476
Interaction: 17477/20016 Out of bounds for computation -> 2.41834[0.001,0.5]
Interaction: 17478/20016 Out of bounds for computation -> 0.765785[0.001,0.5]
Interaction: 17479/20016 Out of bounds for computation -> 2.38197[0.001,0.5]
17480
Interaction: 17481/20016 Out of bounds for computation -> 1.06051[0.001,0.5]
17482
17483
Interaction: 17484/20016 Out of bounds for computation -> 1.69938[0.001,0.5]
Interaction: 17485/20016 Out of bounds for computation -> 0.737309[0.001,0.5]
17486
17487
Interaction: 17488/20016 Out of bounds for computation -> 1.91979[0.001,0.5]
Interaction: 17489/20016 Out of bounds for computation -> 3.0339[0.001,0.5]
Interaction: 17490/20016 Out of bounds for computation -> 1.32556[0.001,0.5]
Interaction: 17491/20016 Out of bounds for computation -> 1.69177[0.001,0.5]
17492
17493
Interaction: 17494/20016 Out of bounds for computation -> 1.36137[0.001,0.5]
17495
Interaction: 17496/20016 Out of bounds for computation -> 0.761106[0.001,0.5]
17497
Interaction: 17498/20016 Out of bounds for computation -> 0.641065[0.001,0.5]
Interaction: 17499/20016 Out of bounds for computation -> 0.827172[0.001,0.5]
17500
Interaction: 17501/20016 Out of bounds for computation -> 0.806658[0.001,0.5]
17502
17503
17504
17505
Interaction: 17506/20016 Out of bounds for computation -> 1.80172[0.001,0.5]
Interaction: 17507/20016 Out of bounds for computation -> 0.881899[0.001,0.5]
17508
17509
Interaction: 17510/20016 Out of bounds for computation -> 2.606[0.001,0.5]
17511
Interaction: 17512/20016 Out of bounds for computation -> 0.835615[0.001,0.5]
17513
Interaction: 17514/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 17515/20016 Out of bounds for computation -> 1.44181[0.001,0.5]
Interaction: 17516/20016 Out of bounds for computation -> 0.899249[0.001,0.5]
17517
Interaction: 17518/20016 Out of bounds for computation -> 1.38726[0.001,0.5]
17519
Interaction: 17520/20016 Out of bounds for computation -> 1.49726[0.001,0.5]
17521
17522
Interaction: 17523/20016 Out of bounds for computation -> nan[0.001,0.5]
17524
Interaction: 17525/20016 Out of bounds for computation -> 0.783151[0.001,0.5]
17526
17527
Interaction: 17528/20016 Out of bounds for computation -> 2.61548[0.001,0.5]
17529
17530
17531
17532
17533
17534
17535
17536
Interaction: 17537/20016 Out of bounds for computation -> 2.06394[0.001,0.5]
Interaction: 17538/20016 Out of bounds for computation -> 0.52201[0.001,0.5]
Interaction: 17539/20016 Out of bounds for computation -> 0.605274[0.001,0.5]
Interaction: 17540/20016 Out of bounds for computation -> 1.53596[0.001,0.5]
Interaction: 17541/20016 Out of bounds for computation -> 2.78097[0.001,0.5]
Interaction: 17542/20016 Out of bounds for computation -> 2.61049[0.001,0.5]
Interaction: 17543/20016 Out of bounds for computation -> 1.76143[0.001,0.5]
17544
17545
17546
Interaction: 17547/20016 Out of bounds for computation -> nan[0.001,0.5]
17548
Interaction: 17549/20016 Out of bounds for computation -> 0.752875[0.001,0.5]
Interaction: 17550/20016 Out of bounds for computation -> 1.16603[0.001,0.5]
Interaction: 17551/20016 Out of bounds for computation -> 0.644709[0.001,0.5]
17552
Interaction: 17553/20016 Out of bounds for computation -> 0.919883[0.001,0.5]
17554
17555
17556
Interaction: 17557/20016 Out of bounds for computation -> nan[0.001,0.5]
17558
17559
Interaction: 17560/20016 Out of bounds for computation -> 0.55458[0.001,0.5]
17561
17562
17563
17564
17565
Interaction: 17566/20016 Out of bounds for computation -> 2.42289[0.001,0.5]
17567
17568
17569
17570
Interaction: 17571/20016 Out of bounds for computation -> 0.668734[0.001,0.5]
17572
Interaction: 17573/20016 Out of bounds for computation -> 0.574725[0.001,0.5]
17574
17575
17576
17577
Interaction: 17578/20016 Out of bounds for computation -> 0.760776[0.001,0.5]
Interaction: 17579/20016 Out of bounds for computation -> 2.22233[0.001,0.5]
Interaction: 17580/20016 Out of bounds for computation -> 0.82317[0.001,0.5]
Interaction: 17581/20016 Out of bounds for computation -> 0.938429[0.001,0.5]
17582
17583
17584
17585
Interaction: 17586/20016 Out of bounds for computation -> nan[0.001,0.5]
17587
Interaction: 17588/20016 Out of bounds for computation -> 1.00061[0.001,0.5]
Interaction: 17589/20016 Out of bounds for computation -> 1.54696[0.001,0.5]
17590
17591
17592
17593
17594
17595
Interaction: 17596/20016 Out of bounds for computation -> 0.708448[0.001,0.5]
Interaction: 17597/20016 Out of bounds for computation -> 0.653022[0.001,0.5]
17598
17599
Interaction: 17600/20016 Out of bounds for computation -> 0.591959[0.001,0.5]
17601
17602
Interaction: 17603/20016 Out of bounds for computation -> 1.03142[0.001,0.5]
Interaction: 17604/20016 Out of bounds for computation -> 2.0949[0.001,0.5]
17605
17606
Interaction: 17607/20016 Out of bounds for computation -> 1.50853[0.001,0.5]
17608
17609
17610
Interaction: 17611/20016 Out of bounds for computation -> 0.739711[0.001,0.5]
17612
Interaction: 17613/20016 Out of bounds for computation -> 2.22259[0.001,0.5]
Interaction: 17614/20016 Out of bounds for computation -> nan[0.001,0.5]
17615
Interaction: 17616/20016 Out of bounds for computation -> 0.687824[0.001,0.5]
Interaction: 17617/20016 Out of bounds for computation -> 0.618031[0.001,0.5]
Interaction: 17618/20016 Out of bounds for computation -> 2.35241[0.001,0.5]
Interaction: 17619/20016 Out of bounds for computation -> 0.687694[0.001,0.5]
17620
17621
Interaction: 17622/20016 Out of bounds for computation -> 2.0826[0.001,0.5]
17623
17624
17625
17626
17627
17628
Interaction: 17629/20016 Out of bounds for computation -> 0.620774[0.001,0.5]
Interaction: 17630/20016 Out of bounds for computation -> 0.5909[0.001,0.5]
17631
17632
Interaction: 17633/20016 Out of bounds for computation -> 0.886534[0.001,0.5]
17634
Interaction: 17635/20016 Out of bounds for computation -> 2.7354[0.001,0.5]
Interaction: 17636/20016 Out of bounds for computation -> 0.689207[0.001,0.5]
17637
Interaction: 17638/20016 Out of bounds for computation -> 0.651145[0.001,0.5]
17639
17640
17641
Interaction: 17642/20016 Out of bounds for computation -> 0.905766[0.001,0.5]
17643
17644
Interaction: 17645/20016 Out of bounds for computation -> 1.31391[0.001,0.5]
Interaction: 17646/20016 Out of bounds for computation -> 0.508624[0.001,0.5]
17647
17648
Interaction: 17649/20016 Out of bounds for computation -> nan[0.001,0.5]
17650
17651
Interaction: 17652/20016 Out of bounds for computation -> 0.51097[0.001,0.5]
17653
17654
17655
17656
Interaction: 17657/20016 Out of bounds for computation -> 2.70936[0.001,0.5]
Interaction: 17658/20016 Out of bounds for computation -> 1.52077[0.001,0.5]
17659
17660
17661
Interaction: 17662/20016 Out of bounds for computation -> 1.7247[0.001,0.5]
17663
Interaction: 17664/20016 Out of bounds for computation -> 0.508647[0.001,0.5]
Interaction: 17665/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 17666/20016 Out of bounds for computation -> 0.811069[0.001,0.5]
Interaction: 17667/20016 Out of bounds for computation -> 1.86972[0.001,0.5]
17668
Interaction: 17669/20016 Out of bounds for computation -> 1.42341[0.001,0.5]
17670
17671
Interaction: 17672/20016 Out of bounds for computation -> 2.2011[0.001,0.5]
17673
Interaction: 17674/20016 Out of bounds for computation -> 2.70134[0.001,0.5]
17675
Interaction: 17676/20016 Out of bounds for computation -> 0.714166[0.001,0.5]
Interaction: 17677/20016 Out of bounds for computation -> 0.620104[0.001,0.5]
Interaction: 17678/20016 Out of bounds for computation -> 0.692861[0.001,0.5]
Interaction: 17679/20016 Out of bounds for computation -> 1.50218[0.001,0.5]
17680
17681
17682
Interaction: 17683/20016 Out of bounds for computation -> 1.44236[0.001,0.5]
17684
17685
Interaction: 17686/20016 Out of bounds for computation -> 0.605077[0.001,0.5]
Interaction: 17687/20016 Out of bounds for computation -> 0.727135[0.001,0.5]
17688
17689
17690
Interaction: 17691/20016 Out of bounds for computation -> 0.977297[0.001,0.5]
17692
Interaction: 17693/20016 Out of bounds for computation -> nan[0.001,0.5]
17694
Interaction: 17695/20016 Out of bounds for computation -> 2.61747[0.001,0.5]
Interaction: 17696/20016 Out of bounds for computation -> 0.633307[0.001,0.5]
Interaction: 17697/20016 Out of bounds for computation -> 1.47278[0.001,0.5]
17698
17699
Interaction: 17700/20016 Out of bounds for computation -> 0.541314[0.001,0.5]
Interaction: 17701/20016 Out of bounds for computation -> 1.19202[0.001,0.5]
Interaction: 17702/20016 Out of bounds for computation -> 2.18733[0.001,0.5]
Interaction: 17703/20016 Out of bounds for computation -> 1.50143[0.001,0.5]
17704
Interaction: 17705/20016 Out of bounds for computation -> 0.572616[0.001,0.5]
17706
17707
Interaction: 17708/20016 Out of bounds for computation -> 0.991369[0.001,0.5]
Interaction: 17709/20016 Out of bounds for computation -> nan[0.001,0.5]
17710
17711
Interaction: 17712/20016 Out of bounds for computation -> 1.31895[0.001,0.5]
17713
Interaction: 17714/20016 Out of bounds for computation -> 0.821484[0.001,0.5]
17715
Interaction: 17716/20016 Out of bounds for computation -> 1.84932[0.001,0.5]
17717
17718
Interaction: 17719/20016 Out of bounds for computation -> 0.749286[0.001,0.5]
17720
Interaction: 17721/20016 Out of bounds for computation -> 0.586757[0.001,0.5]
17722
17723
Interaction: 17724/20016 Out of bounds for computation -> 1.95883[0.001,0.5]
Interaction: 17725/20016 Out of bounds for computation -> 3.12087[0.001,0.5]
17726
17727
Interaction: 17728/20016 Out of bounds for computation -> 0.705649[0.001,0.5]
17729
Interaction: 17730/20016 Out of bounds for computation -> 1.75879[0.001,0.5]
17731
Interaction: 17732/20016 Out of bounds for computation -> 1.50138[0.001,0.5]
Interaction: 17733/20016 Out of bounds for computation -> 0.791532[0.001,0.5]
Interaction: 17734/20016 Out of bounds for computation -> 0.766568[0.001,0.5]
Interaction: 17735/20016 Out of bounds for computation -> 1.40885[0.001,0.5]
17736
17737
Interaction: 17738/20016 Out of bounds for computation -> 0.681785[0.001,0.5]
17739
17740
17741
17742
17743
17744
17745
17746
Interaction: 17747/20016 Out of bounds for computation -> 1.58696[0.001,0.5]
17748
17749
17750
Interaction: 17751/20016 Out of bounds for computation -> 0.518556[0.001,0.5]
17752
17753
17754
17755
17756
Interaction: 17757/20016 Out of bounds for computation -> 1.60764[0.001,0.5]
Interaction: 17758/20016 Out of bounds for computation -> 0.64755[0.001,0.5]
Interaction: 17759/20016 Out of bounds for computation -> 2.09107[0.001,0.5]
17760
17761
17762
Interaction: 17763/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 17764/20016 Out of bounds for computation -> 0.900233[0.001,0.5]
Interaction: 17765/20016 Out of bounds for computation -> nan[0.001,0.5]
17766
17767
Interaction: 17768/20016 Out of bounds for computation -> 1.42479[0.001,0.5]
Interaction: 17769/20016 Out of bounds for computation -> 0.657479[0.001,0.5]
17770
Interaction: 17771/20016 Out of bounds for computation -> 2.83848[0.001,0.5]
Interaction: 17772/20016 Out of bounds for computation -> 0.611256[0.001,0.5]
17773
17774
Interaction: 17775/20016 Out of bounds for computation -> 2.65138[0.001,0.5]
Interaction: 17776/20016 Out of bounds for computation -> 1.28085[0.001,0.5]
17777
17778
Interaction: 17779/20016 Out of bounds for computation -> 1.43795[0.001,0.5]
Interaction: 17780/20016 Out of bounds for computation -> 1.49214[0.001,0.5]
Interaction: 17781/20016 Out of bounds for computation -> 0.714166[0.001,0.5]
17782
Interaction: 17783/20016 Out of bounds for computation -> 0.994189[0.001,0.5]
17784
17785
17786
Interaction: 17787/20016 Out of bounds for computation -> 0.529231[0.001,0.5]
17788
Interaction: 17789/20016 Out of bounds for computation -> 0.692899[0.001,0.5]
Interaction: 17790/20016 Out of bounds for computation -> 1.01727[0.001,0.5]
Interaction: 17791/20016 Out of bounds for computation -> 1.56395[0.001,0.5]
Interaction: 17792/20016 Out of bounds for computation -> 1.5316[0.001,0.5]
Interaction: 17793/20016 Out of bounds for computation -> 0.842133[0.001,0.5]
Interaction: 17794/20016 Out of bounds for computation -> 0.537076[0.001,0.5]
17795
Interaction: 17796/20016 Out of bounds for computation -> 1.09851[0.001,0.5]
Interaction: 17797/20016 Out of bounds for computation -> 0.774439[0.001,0.5]
17798
17799
17800
Interaction: 17801/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 17802/20016 Out of bounds for computation -> nan[0.001,0.5]
17803
Interaction: 17804/20016 Out of bounds for computation -> 0.752149[0.001,0.5]
Interaction: 17805/20016 Out of bounds for computation -> 1.97163[0.001,0.5]
17806
Interaction: 17807/20016 Out of bounds for computation -> 1.50635[0.001,0.5]
17808
Interaction: 17809/20016 Out of bounds for computation -> 0.51767[0.001,0.5]
17810
Interaction: 17811/20016 Out of bounds for computation -> 0.752488[0.001,0.5]
17812
Interaction: 17813/20016 Out of bounds for computation -> 1.9926[0.001,0.5]
Interaction: 17814/20016 Out of bounds for computation -> nan[0.001,0.5]
17815
Interaction: 17816/20016 Out of bounds for computation -> 0.637391[0.001,0.5]
Interaction: 17817/20016 Out of bounds for computation -> 0.887982[0.001,0.5]
17818
Interaction: 17819/20016 Out of bounds for computation -> 1.29919[0.001,0.5]
17820
Interaction: 17821/20016 Out of bounds for computation -> 2.82249[0.001,0.5]
Interaction: 17822/20016 Out of bounds for computation -> 1.6295[0.001,0.5]
Interaction: 17823/20016 Out of bounds for computation -> 1.46516[0.001,0.5]
Interaction: 17824/20016 Out of bounds for computation -> nan[0.001,0.5]
17825
17826
17827
17828
Interaction: 17829/20016 Out of bounds for computation -> 0.96494[0.001,0.5]
Interaction: 17830/20016 Out of bounds for computation -> 1.50284[0.001,0.5]
Interaction: 17831/20016 Out of bounds for computation -> 1.19753[0.001,0.5]
17832
Interaction: 17833/20016 Out of bounds for computation -> 0.636524[0.001,0.5]
Interaction: 17834/20016 Out of bounds for computation -> nan[0.001,0.5]
17835
Interaction: 17836/20016 Out of bounds for computation -> nan[0.001,0.5]
17837
17838
17839
Interaction: 17840/20016 Out of bounds for computation -> 0.616221[0.001,0.5]
Interaction: 17841/20016 Out of bounds for computation -> 1.35594[0.001,0.5]
Interaction: 17842/20016 Out of bounds for computation -> 0.851665[0.001,0.5]
17843
Interaction: 17844/20016 Out of bounds for computation -> 1.0247[0.001,0.5]
Interaction: 17845/20016 Out of bounds for computation -> 0.572581[0.001,0.5]
17846
Interaction: 17847/20016 Out of bounds for computation -> 2.3728[0.001,0.5]
17848
17849
17850
Interaction: 17851/20016 Out of bounds for computation -> nan[0.001,0.5]
17852
17853
Interaction: 17854/20016 Out of bounds for computation -> 1.42366[0.001,0.5]
Interaction: 17855/20016 Out of bounds for computation -> 0.685231[0.001,0.5]
Interaction: 17856/20016 Out of bounds for computation -> 0.787367[0.001,0.5]
Interaction: 17857/20016 Out of bounds for computation -> 0.982434[0.001,0.5]
Interaction: 17858/20016 Out of bounds for computation -> 1.673[0.001,0.5]
17859
17860
Interaction: 17861/20016 Out of bounds for computation -> nan[0.001,0.5]
17862
17863
Interaction: 17864/20016 Out of bounds for computation -> 1.83256[0.001,0.5]
17865
Interaction: 17866/20016 Out of bounds for computation -> 0.611569[0.001,0.5]
Interaction: 17867/20016 Out of bounds for computation -> 0.906916[0.001,0.5]
Interaction: 17868/20016 Out of bounds for computation -> 0.711984[0.001,0.5]
17869
Interaction: 17870/20016 Out of bounds for computation -> 2.28915[0.001,0.5]
17871
17872
17873
17874
17875
17876
17877
17878
Interaction: 17879/20016 Out of bounds for computation -> 0.64274[0.001,0.5]
17880
17881
17882
17883
17884
17885
Interaction: 17886/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 17887/20016 Out of bounds for computation -> 2.55413[0.001,0.5]
Interaction: 17888/20016 Out of bounds for computation -> 0.527356[0.001,0.5]
Interaction: 17889/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 17890/20016 Out of bounds for computation -> 1.4555[0.001,0.5]
Interaction: 17891/20016 Out of bounds for computation -> 1.21761[0.001,0.5]
Interaction: 17892/20016 Out of bounds for computation -> 1.46353[0.001,0.5]
Interaction: 17893/20016 Out of bounds for computation -> 2.32996[0.001,0.5]
Interaction: 17894/20016 Out of bounds for computation -> 0.522576[0.001,0.5]
Interaction: 17895/20016 Out of bounds for computation -> 1.37888[0.001,0.5]
Interaction: 17896/20016 Out of bounds for computation -> 1.50186[0.001,0.5]
17897
17898
Interaction: 17899/20016 Out of bounds for computation -> 1.42347[0.001,0.5]
17900
17901
17902
17903
Interaction: 17904/20016 Out of bounds for computation -> 0.805968[0.001,0.5]
Interaction: 17905/20016 Out of bounds for computation -> 1.5744[0.001,0.5]
17906
Interaction: 17907/20016 Out of bounds for computation -> 0.507966[0.001,0.5]
Interaction: 17908/20016 Out of bounds for computation -> 3.01556[0.001,0.5]
Interaction: 17909/20016 Out of bounds for computation -> 2.12572[0.001,0.5]
17910
17911
Interaction: 17912/20016 Out of bounds for computation -> 0.663747[0.001,0.5]
Interaction: 17913/20016 Out of bounds for computation -> 1.18032[0.001,0.5]
17914
17915
Interaction: 17916/20016 Out of bounds for computation -> 0.582727[0.001,0.5]
17917
Interaction: 17918/20016 Out of bounds for computation -> 0.712355[0.001,0.5]
Interaction: 17919/20016 Out of bounds for computation -> 1.88853[0.001,0.5]
Interaction: 17920/20016 Out of bounds for computation -> 0.786911[0.001,0.5]
Interaction: 17921/20016 Out of bounds for computation -> 0.730834[0.001,0.5]
Interaction: 17922/20016 Out of bounds for computation -> nan[0.001,0.5]
17923
17924
17925
17926
17927
17928
17929
17930
Interaction: 17931/20016 Out of bounds for computation -> 1.4138[0.001,0.5]
Interaction: 17932/20016 Out of bounds for computation -> 0.725698[0.001,0.5]
17933
17934
17935
Interaction: 17936/20016 Out of bounds for computation -> 2.53563[0.001,0.5]
Interaction: 17937/20016 Out of bounds for computation -> 1.09893[0.001,0.5]
17938
17939
17940
Interaction: 17941/20016 Out of bounds for computation -> 0.538945[0.001,0.5]
Interaction: 17942/20016 Out of bounds for computation -> 1.24861[0.001,0.5]
17943
17944
17945
Interaction: 17946/20016 Out of bounds for computation -> 0.630712[0.001,0.5]
17947
Interaction: 17948/20016 Out of bounds for computation -> 0.510892[0.001,0.5]
17949
Interaction: 17950/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 17951/20016 Out of bounds for computation -> 0.734604[0.001,0.5]
Interaction: 17952/20016 Out of bounds for computation -> nan[0.001,0.5]
17953
Interaction: 17954/20016 Out of bounds for computation -> 1.05813[0.001,0.5]
Interaction: 17955/20016 Out of bounds for computation -> 0.598236[0.001,0.5]
Interaction: 17956/20016 Out of bounds for computation -> 0.71235[0.001,0.5]
Interaction: 17957/20016 Out of bounds for computation -> 1.33521[0.001,0.5]
Interaction: 17958/20016 Out of bounds for computation -> 0.887347[0.001,0.5]
17959
17960
Interaction: 17961/20016 Out of bounds for computation -> 1.39257[0.001,0.5]
Interaction: 17962/20016 Out of bounds for computation -> nan[0.001,0.5]
17963
17964
17965
Interaction: 17966/20016 Out of bounds for computation -> 0.534224[0.001,0.5]
17967
Interaction: 17968/20016 Out of bounds for computation -> 1.80771[0.001,0.5]
Interaction: 17969/20016 Out of bounds for computation -> 0.507585[0.001,0.5]
Interaction: 17970/20016 Out of bounds for computation -> 0.733134[0.001,0.5]
Interaction: 17971/20016 Out of bounds for computation -> 1.92113[0.001,0.5]
Interaction: 17972/20016 Out of bounds for computation -> 0.535858[0.001,0.5]
Interaction: 17973/20016 Out of bounds for computation -> 1.10116[0.001,0.5]
17974
Interaction: 17975/20016 Out of bounds for computation -> 0.514117[0.001,0.5]
Interaction: 17976/20016 Out of bounds for computation -> 0.804127[0.001,0.5]
Interaction: 17977/20016 Out of bounds for computation -> 1.53753[0.001,0.5]
17978
Interaction: 17979/20016 Out of bounds for computation -> 0.697656[0.001,0.5]
Interaction: 17980/20016 Out of bounds for computation -> nan[0.001,0.5]
17981
17982
Interaction: 17983/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 17984/20016 Out of bounds for computation -> 0.908281[0.001,0.5]
17985
17986
Interaction: 17987/20016 Out of bounds for computation -> nan[0.001,0.5]
17988
17989
17990
Interaction: 17991/20016 Out of bounds for computation -> 2.70108[0.001,0.5]
17992
17993
Interaction: 17994/20016 Out of bounds for computation -> 2.47933[0.001,0.5]
Interaction: 17995/20016 Out of bounds for computation -> 0.754409[0.001,0.5]
17996
Interaction: 17997/20016 Out of bounds for computation -> 0.87654[0.001,0.5]
Interaction: 17998/20016 Out of bounds for computation -> 0.810308[0.001,0.5]
Interaction: 17999/20016 Out of bounds for computation -> nan[0.001,0.5]
18000
18001
Interaction: 18002/20016 Out of bounds for computation -> 2.02258[0.001,0.5]
18003
18004
Interaction: 18005/20016 Out of bounds for computation -> 1.63103[0.001,0.5]
Interaction: 18006/20016 Out of bounds for computation -> nan[0.001,0.5]
18007
Interaction: 18008/20016 Out of bounds for computation -> 0.697569[0.001,0.5]
Interaction: 18009/20016 Out of bounds for computation -> 2.55701[0.001,0.5]
18010
18011
Interaction: 18012/20016 Out of bounds for computation -> 0.692965[0.001,0.5]
Interaction: 18013/20016 Out of bounds for computation -> 0.737719[0.001,0.5]
Interaction: 18014/20016 Out of bounds for computation -> 0.64698[0.001,0.5]
Interaction: 18015/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 18016/20016 Out of bounds for computation -> 1.75896[0.001,0.5]
18017
Interaction: 18018/20016 Out of bounds for computation -> 0.57577[0.001,0.5]
Interaction: 18019/20016 Out of bounds for computation -> 0.599577[0.001,0.5]
18020
18021
18022
18023
Interaction: 18024/20016 Out of bounds for computation -> 1.6033[0.001,0.5]
18025
Interaction: 18026/20016 Out of bounds for computation -> 0.786154[0.001,0.5]
Interaction: 18027/20016 Out of bounds for computation -> 0.915501[0.001,0.5]
18028
Interaction: 18029/20016 Out of bounds for computation -> nan[0.001,0.5]
18030
18031
Interaction: 18032/20016 Out of bounds for computation -> nan[0.001,0.5]
18033
Interaction: 18034/20016 Out of bounds for computation -> nan[0.001,0.5]
18035
18036
Interaction: 18037/20016 Out of bounds for computation -> 2.49387[0.001,0.5]
18038
Interaction: 18039/20016 Out of bounds for computation -> 0.654788[0.001,0.5]
Interaction: 18040/20016 Out of bounds for computation -> 0.521051[0.001,0.5]
18041
Interaction: 18042/20016 Out of bounds for computation -> 2.31494[0.001,0.5]
18043
Interaction: 18044/20016 Out of bounds for computation -> 2.08337[0.001,0.5]
Interaction: 18045/20016 Out of bounds for computation -> 1.92435[0.001,0.5]
18046
Interaction: 18047/20016 Out of bounds for computation -> 0.605176[0.001,0.5]
18048
18049
Interaction: 18050/20016 Out of bounds for computation -> 0.7023[0.001,0.5]
Interaction: 18051/20016 Out of bounds for computation -> 0.880797[0.001,0.5]
18052
18053
18054
18055
Interaction: 18056/20016 Out of bounds for computation -> 2.67325[0.001,0.5]
18057
18058
18059
Interaction: 18060/20016 Out of bounds for computation -> 1.27393[0.001,0.5]
18061
Interaction: 18062/20016 Out of bounds for computation -> 0.727345[0.001,0.5]
18063
18064
18065
18066
18067
18068
18069
18070
18071
18072
18073
Interaction: 18074/20016 Out of bounds for computation -> 2.07064[0.001,0.5]
18075
Interaction: 18076/20016 Out of bounds for computation -> 0.622973[0.001,0.5]
18077
18078
Interaction: 18079/20016 Out of bounds for computation -> 2.14871[0.001,0.5]
18080
Interaction: 18081/20016 Out of bounds for computation -> 0.670404[0.001,0.5]
18082
Interaction: 18083/20016 Out of bounds for computation -> 1.12007[0.001,0.5]
Interaction: 18084/20016 Out of bounds for computation -> 0.738393[0.001,0.5]
Interaction: 18085/20016 Out of bounds for computation -> 1.10198[0.001,0.5]
18086
18087
18088
Interaction: 18089/20016 Out of bounds for computation -> 0.774735[0.001,0.5]
Interaction: 18090/20016 Out of bounds for computation -> 0.526425[0.001,0.5]
18091
Interaction: 18092/20016 Out of bounds for computation -> 0.606084[0.001,0.5]
Interaction: 18093/20016 Out of bounds for computation -> 1.50297[0.001,0.5]
Interaction: 18094/20016 Out of bounds for computation -> 0.722187[0.001,0.5]
18095
Interaction: 18096/20016 Out of bounds for computation -> 0.766607[0.001,0.5]
18097
Interaction: 18098/20016 Out of bounds for computation -> 2.07142[0.001,0.5]
Interaction: 18099/20016 Out of bounds for computation -> 0.719679[0.001,0.5]
18100
Interaction: 18101/20016 Out of bounds for computation -> 1.72755[0.001,0.5]
Interaction: 18102/20016 Out of bounds for computation -> 0.679611[0.001,0.5]
18103
18104
18105
18106
Interaction: 18107/20016 Out of bounds for computation -> 0.572795[0.001,0.5]
Interaction: 18108/20016 Out of bounds for computation -> 0.83081[0.001,0.5]
Interaction: 18109/20016 Out of bounds for computation -> 2.46778[0.001,0.5]
18110
18111
Interaction: 18112/20016 Out of bounds for computation -> 1.51304[0.001,0.5]
Interaction: 18113/20016 Out of bounds for computation -> 0.810922[0.001,0.5]
18114
Interaction: 18115/20016 Out of bounds for computation -> 0.904893[0.001,0.5]
Interaction: 18116/20016 Out of bounds for computation -> 1.91571[0.001,0.5]
18117
18118
Interaction: 18119/20016 Out of bounds for computation -> 0.533734[0.001,0.5]
18120
Interaction: 18121/20016 Out of bounds for computation -> 0.610441[0.001,0.5]
18122
18123
18124
Interaction: 18125/20016 Out of bounds for computation -> 0.72208[0.001,0.5]
Interaction: 18126/20016 Out of bounds for computation -> 0.701206[0.001,0.5]
18127
Interaction: 18128/20016 Out of bounds for computation -> 1.4561[0.001,0.5]
18129
18130
18131
18132
Interaction: 18133/20016 Out of bounds for computation -> 0.679429[0.001,0.5]
Interaction: 18134/20016 Out of bounds for computation -> 1.20139[0.001,0.5]
18135
Interaction: 18136/20016 Out of bounds for computation -> 0.786057[0.001,0.5]
Interaction: 18137/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 18138/20016 Out of bounds for computation -> 0.786846[0.001,0.5]
18139
Interaction: 18140/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 18141/20016 Out of bounds for computation -> 1.40375[0.001,0.5]
Interaction: 18142/20016 Out of bounds for computation -> 1.69231[0.001,0.5]
18143
18144
Interaction: 18145/20016 Out of bounds for computation -> 0.563516[0.001,0.5]
18146
Interaction: 18147/20016 Out of bounds for computation -> 0.643354[0.001,0.5]
18148
Interaction: 18149/20016 Out of bounds for computation -> 2.41988[0.001,0.5]
18150
Interaction: 18151/20016 Out of bounds for computation -> 1.75964[0.001,0.5]
Interaction: 18152/20016 Out of bounds for computation -> 2.25401[0.001,0.5]
Interaction: 18153/20016 Out of bounds for computation -> 2.28575[0.001,0.5]
18154
18155
Interaction: 18156/20016 Out of bounds for computation -> 0.749759[0.001,0.5]
Interaction: 18157/20016 Out of bounds for computation -> 0.829737[0.001,0.5]
Interaction: 18158/20016 Out of bounds for computation -> 1.48426[0.001,0.5]
18159
18160
18161
Interaction: 18162/20016 Out of bounds for computation -> 2.22079[0.001,0.5]
18163
18164
Interaction: 18165/20016 Out of bounds for computation -> 1.89376[0.001,0.5]
18166
18167
18168
Interaction: 18169/20016 Out of bounds for computation -> 2.41739[0.001,0.5]
18170
Interaction: 18171/20016 Out of bounds for computation -> 0.916187[0.001,0.5]
Interaction: 18172/20016 Out of bounds for computation -> 0.703445[0.001,0.5]
Interaction: 18173/20016 Out of bounds for computation -> 1.42031[0.001,0.5]
Interaction: 18174/20016 Out of bounds for computation -> 2.12205[0.001,0.5]
Interaction: 18175/20016 Out of bounds for computation -> 1.43601[0.001,0.5]
Interaction: 18176/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 18177/20016 Out of bounds for computation -> 1.83612[0.001,0.5]
18178
18179
18180
18181
18182
Interaction: 18183/20016 Out of bounds for computation -> 0.68978[0.001,0.5]
Interaction: 18184/20016 Out of bounds for computation -> 1.37807[0.001,0.5]
Interaction: 18185/20016 Out of bounds for computation -> 1.55188[0.001,0.5]
Interaction: 18186/20016 Out of bounds for computation -> 1.85204[0.001,0.5]
18187
18188
Interaction: 18189/20016 Out of bounds for computation -> 2.25705[0.001,0.5]
18190
18191
18192
18193
Interaction: 18194/20016 Out of bounds for computation -> 0.599972[0.001,0.5]
Interaction: 18195/20016 Out of bounds for computation -> 1.13087[0.001,0.5]
Interaction: 18196/20016 Out of bounds for computation -> 0.535729[0.001,0.5]
18197
18198
Interaction: 18199/20016 Out of bounds for computation -> nan[0.001,0.5]
18200
Interaction: 18201/20016 Out of bounds for computation -> 0.545098[0.001,0.5]
Interaction: 18202/20016 Out of bounds for computation -> nan[0.001,0.5]
18203
Interaction: 18204/20016 Out of bounds for computation -> 1.7257[0.001,0.5]
Interaction: 18205/20016 Out of bounds for computation -> 0.563974[0.001,0.5]
18206
18207
18208
Interaction: 18209/20016 Out of bounds for computation -> 0.595674[0.001,0.5]
18210
Interaction: 18211/20016 Out of bounds for computation -> 0.553998[0.001,0.5]
18212
18213
18214
18215
Interaction: 18216/20016 Out of bounds for computation -> 0.508497[0.001,0.5]
Interaction: 18217/20016 Out of bounds for computation -> 2.19631[0.001,0.5]
Interaction: 18218/20016 Out of bounds for computation -> 2.41517[0.001,0.5]
18219
18220
18221
Interaction: 18222/20016 Out of bounds for computation -> 0.526707[0.001,0.5]
18223
Interaction: 18224/20016 Out of bounds for computation -> 1.46175[0.001,0.5]
Interaction: 18225/20016 Out of bounds for computation -> 1.6046[0.001,0.5]
Interaction: 18226/20016 Out of bounds for computation -> 0.887197[0.001,0.5]
Interaction: 18227/20016 Out of bounds for computation -> 0.627078[0.001,0.5]
18228
18229
18230
18231
Interaction: 18232/20016 Out of bounds for computation -> 0.892168[0.001,0.5]
Interaction: 18233/20016 Out of bounds for computation -> nan[0.001,0.5]
18234
18235
18236
Interaction: 18237/20016 Out of bounds for computation -> 1.731[0.001,0.5]
18238
18239
18240
18241
18242
Interaction: 18243/20016 Out of bounds for computation -> 0.761732[0.001,0.5]
Interaction: 18244/20016 Out of bounds for computation -> 1.70451[0.001,0.5]
18245
18246
Interaction: 18247/20016 Out of bounds for computation -> 2.90234[0.001,0.5]
Interaction: 18248/20016 Out of bounds for computation -> 2.08188[0.001,0.5]
18249
18250
18251
Interaction: 18252/20016 Out of bounds for computation -> 0.669619[0.001,0.5]
18253
Interaction: 18254/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 18255/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 18256/20016 Out of bounds for computation -> 0.549691[0.001,0.5]
18257
18258
Interaction: 18259/20016 Out of bounds for computation -> 1.63898[0.001,0.5]
18260
18261
Interaction: 18262/20016 Out of bounds for computation -> 0.567573[0.001,0.5]
Interaction: 18263/20016 Out of bounds for computation -> 1.46388[0.001,0.5]
18264
Interaction: 18265/20016 Out of bounds for computation -> 0.814442[0.001,0.5]
Interaction: 18266/20016 Out of bounds for computation -> 0.564[0.001,0.5]
Interaction: 18267/20016 Out of bounds for computation -> 0.693967[0.001,0.5]
Interaction: 18268/20016 Out of bounds for computation -> 0.519608[0.001,0.5]
18269
18270
Interaction: 18271/20016 Out of bounds for computation -> 1.41048[0.001,0.5]
18272
Interaction: 18273/20016 Out of bounds for computation -> 0.527245[0.001,0.5]
Interaction: 18274/20016 Out of bounds for computation -> 0.661659[0.001,0.5]
Interaction: 18275/20016 Out of bounds for computation -> 0.653694[0.001,0.5]
18276
Interaction: 18277/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 18278/20016 Out of bounds for computation -> 0.50414[0.001,0.5]
18279
Interaction: 18280/20016 Out of bounds for computation -> 0.814956[0.001,0.5]
Interaction: 18281/20016 Out of bounds for computation -> 0.609015[0.001,0.5]
18282
18283
18284
Interaction: 18285/20016 Out of bounds for computation -> 0.79387[0.001,0.5]
18286
18287
Interaction: 18288/20016 Out of bounds for computation -> 1.67755[0.001,0.5]
Interaction: 18289/20016 Out of bounds for computation -> 1.46708[0.001,0.5]
Interaction: 18290/20016 Out of bounds for computation -> 1.01477[0.001,0.5]
18291
18292
18293
Interaction: 18294/20016 Out of bounds for computation -> 0.605102[0.001,0.5]
Interaction: 18295/20016 Out of bounds for computation -> 1.44034[0.001,0.5]
Interaction: 18296/20016 Out of bounds for computation -> 1.37201[0.001,0.5]
Interaction: 18297/20016 Out of bounds for computation -> 1.40074[0.001,0.5]
Interaction: 18298/20016 Out of bounds for computation -> 1.73576[0.001,0.5]
Interaction: 18299/20016 Out of bounds for computation -> 1.43504[0.001,0.5]
18300
Interaction: 18301/20016 Out of bounds for computation -> 1.29705[0.001,0.5]
18302
Interaction: 18303/20016 Out of bounds for computation -> 2.91904[0.001,0.5]
Interaction: 18304/20016 Out of bounds for computation -> 1.73342[0.001,0.5]
Interaction: 18305/20016 Out of bounds for computation -> 0.575722[0.001,0.5]
18306
18307
Interaction: 18308/20016 Out of bounds for computation -> 0.936841[0.001,0.5]
Interaction: 18309/20016 Out of bounds for computation -> nan[0.001,0.5]
18310
Interaction: 18311/20016 Out of bounds for computation -> 0.685052[0.001,0.5]
18312
18313
Interaction: 18314/20016 Out of bounds for computation -> 0.78843[0.001,0.5]
18315
18316
Interaction: 18317/20016 Out of bounds for computation -> 0.66321[0.001,0.5]
18318
Interaction: 18319/20016 Out of bounds for computation -> 0.812884[0.001,0.5]
18320
Interaction: 18321/20016 Out of bounds for computation -> 0.678226[0.001,0.5]
Interaction: 18322/20016 Out of bounds for computation -> 0.836405[0.001,0.5]
Interaction: 18323/20016 Out of bounds for computation -> 0.872475[0.001,0.5]
18324
18325
Interaction: 18326/20016 Out of bounds for computation -> 2.20016[0.001,0.5]
Interaction: 18327/20016 Out of bounds for computation -> 0.644415[0.001,0.5]
Interaction: 18328/20016 Out of bounds for computation -> 0.522114[0.001,0.5]
Interaction: 18329/20016 Out of bounds for computation -> 2.10678[0.001,0.5]
18330
18331
18332
18333
18334
18335
18336
Interaction: 18337/20016 Out of bounds for computation -> nan[0.001,0.5]
18338
18339
18340
Interaction: 18341/20016 Out of bounds for computation -> 2.17761[0.001,0.5]
Interaction: 18342/20016 Out of bounds for computation -> 0.769031[0.001,0.5]
18343
Interaction: 18344/20016 Out of bounds for computation -> 1.572[0.001,0.5]
Interaction: 18345/20016 Out of bounds for computation -> 0.900532[0.001,0.5]
Interaction: 18346/20016 Out of bounds for computation -> 0.959879[0.001,0.5]
18347
Interaction: 18348/20016 Out of bounds for computation -> 2.79262[0.001,0.5]
Interaction: 18349/20016 Out of bounds for computation -> 0.542335[0.001,0.5]
18350
Interaction: 18351/20016 Out of bounds for computation -> 0.747395[0.001,0.5]
18352
18353
18354
Interaction: 18355/20016 Out of bounds for computation -> 2.03777[0.001,0.5]
18356
18357
Interaction: 18358/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 18359/20016 Out of bounds for computation -> 2.39027[0.001,0.5]
18360
Interaction: 18361/20016 Out of bounds for computation -> 0.805586[0.001,0.5]
18362
18363
Interaction: 18364/20016 Out of bounds for computation -> 1.45215[0.001,0.5]
18365
18366
Interaction: 18367/20016 Out of bounds for computation -> 1.57282[0.001,0.5]
18368
18369
Interaction: 18370/20016 Out of bounds for computation -> 1.76016[0.001,0.5]
Interaction: 18371/20016 Out of bounds for computation -> 0.736141[0.001,0.5]
18372
18373
Interaction: 18374/20016 Out of bounds for computation -> 0.599785[0.001,0.5]
18375
Interaction: 18376/20016 Out of bounds for computation -> 0.56722[0.001,0.5]
18377
18378
18379
Interaction: 18380/20016 Out of bounds for computation -> 0.775844[0.001,0.5]
18381
18382
Interaction: 18383/20016 Out of bounds for computation -> nan[0.001,0.5]
18384
Interaction: 18385/20016 Out of bounds for computation -> 0.798687[0.001,0.5]
18386
Interaction: 18387/20016 Out of bounds for computation -> 1.68003[0.001,0.5]
18388
18389
18390
18391
18392
18393
18394
Interaction: 18395/20016 Out of bounds for computation -> 2.10625[0.001,0.5]
18396
18397
Interaction: 18398/20016 Out of bounds for computation -> 0.648754[0.001,0.5]
Interaction: 18399/20016 Out of bounds for computation -> 1.31779[0.001,0.5]
18400
Interaction: 18401/20016 Out of bounds for computation -> 0.835227[0.001,0.5]
Interaction: 18402/20016 Out of bounds for computation -> 1.54329[0.001,0.5]
18403
Interaction: 18404/20016 Out of bounds for computation -> 0.928745[0.001,0.5]
18405
18406
18407
18408
Interaction: 18409/20016 Out of bounds for computation -> 2.7083[0.001,0.5]
Interaction: 18410/20016 Out of bounds for computation -> 2.25696[0.001,0.5]
18411
18412
18413
Interaction: 18414/20016 Out of bounds for computation -> 0.963886[0.001,0.5]
18415
Interaction: 18416/20016 Out of bounds for computation -> 1.99454[0.001,0.5]
18417
18418
Interaction: 18419/20016 Out of bounds for computation -> 0.64364[0.001,0.5]
Interaction: 18420/20016 Out of bounds for computation -> 1.84541[0.001,0.5]
18421
Interaction: 18422/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 18423/20016 Out of bounds for computation -> 2.01417[0.001,0.5]
Interaction: 18424/20016 Out of bounds for computation -> 0.66669[0.001,0.5]
Interaction: 18425/20016 Out of bounds for computation -> 0.817668[0.001,0.5]
Interaction: 18426/20016 Out of bounds for computation -> 0.717885[0.001,0.5]
Interaction: 18427/20016 Out of bounds for computation -> 1.48967[0.001,0.5]
Interaction: 18428/20016 Out of bounds for computation -> 1.43099[0.001,0.5]
18429
Interaction: 18430/20016 Out of bounds for computation -> 1.86713[0.001,0.5]
18431
Interaction: 18432/20016 Out of bounds for computation -> nan[0.001,0.5]
18433
18434
18435
18436
18437
18438
Interaction: 18439/20016 Out of bounds for computation -> 0.626081[0.001,0.5]
Interaction: 18440/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 18441/20016 Out of bounds for computation -> 0.606084[0.001,0.5]
18442
18443
Interaction: 18444/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 18445/20016 Out of bounds for computation -> 1.5544[0.001,0.5]
18446
18447
Interaction: 18448/20016 Out of bounds for computation -> 1.6679[0.001,0.5]
18449
Interaction: 18450/20016 Out of bounds for computation -> 1.44736[0.001,0.5]
Interaction: 18451/20016 Out of bounds for computation -> 2.29224[0.001,0.5]
Interaction: 18452/20016 Out of bounds for computation -> 0.551113[0.001,0.5]
18453
18454
Interaction: 18455/20016 Out of bounds for computation -> nan[0.001,0.5]
18456
Interaction: 18457/20016 Out of bounds for computation -> 0.719798[0.001,0.5]
Interaction: 18458/20016 Out of bounds for computation -> 1.29572[0.001,0.5]
18459
Interaction: 18460/20016 Out of bounds for computation -> 1.87135[0.001,0.5]
18461
18462
18463
18464
18465
Interaction: 18466/20016 Out of bounds for computation -> 2.44855[0.001,0.5]
18467
Interaction: 18468/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 18469/20016 Out of bounds for computation -> 1.36197[0.001,0.5]
18470
18471
Interaction: 18472/20016 Out of bounds for computation -> 0.843232[0.001,0.5]
Interaction: 18473/20016 Out of bounds for computation -> 0.523346[0.001,0.5]
Interaction: 18474/20016 Out of bounds for computation -> 0.772074[0.001,0.5]
18475
Interaction: 18476/20016 Out of bounds for computation -> nan[0.001,0.5]
18477
18478
18479
18480
Interaction: 18481/20016 Out of bounds for computation -> 2.27695[0.001,0.5]
Interaction: 18482/20016 Out of bounds for computation -> 0.572308[0.001,0.5]
Interaction: 18483/20016 Out of bounds for computation -> 1.32069[0.001,0.5]
18484
18485
Interaction: 18486/20016 Out of bounds for computation -> 0.756851[0.001,0.5]
18487
Interaction: 18488/20016 Out of bounds for computation -> 1.75888[0.001,0.5]
18489
Interaction: 18490/20016 Out of bounds for computation -> 2.02051[0.001,0.5]
Interaction: 18491/20016 Out of bounds for computation -> 1.47092[0.001,0.5]
Interaction: 18492/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 18493/20016 Out of bounds for computation -> 0.856206[0.001,0.5]
Interaction: 18494/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 18495/20016 Out of bounds for computation -> 2.561[0.001,0.5]
Interaction: 18496/20016 Out of bounds for computation -> 0.982097[0.001,0.5]
Interaction: 18497/20016 Out of bounds for computation -> 1.38994[0.001,0.5]
Interaction: 18498/20016 Out of bounds for computation -> 0.595538[0.001,0.5]
Interaction: 18499/20016 Out of bounds for computation -> 0.551955[0.001,0.5]
Interaction: 18500/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 18501/20016 Out of bounds for computation -> 1.27793[0.001,0.5]
Interaction: 18502/20016 Out of bounds for computation -> 1.24309[0.001,0.5]
18503
18504
18505
Interaction: 18506/20016 Out of bounds for computation -> 2.56172[0.001,0.5]
18507
Interaction: 18508/20016 Out of bounds for computation -> 0.666947[0.001,0.5]
18509
18510
18511
Interaction: 18512/20016 Out of bounds for computation -> 1.46514[0.001,0.5]
18513
18514
Interaction: 18515/20016 Out of bounds for computation -> 0.83493[0.001,0.5]
Interaction: 18516/20016 Out of bounds for computation -> nan[0.001,0.5]
18517
Interaction: 18518/20016 Out of bounds for computation -> 2.26296[0.001,0.5]
Interaction: 18519/20016 Out of bounds for computation -> 0.671776[0.001,0.5]
Interaction: 18520/20016 Out of bounds for computation -> 1.26953[0.001,0.5]
18521
Interaction: 18522/20016 Out of bounds for computation -> 1.65949[0.001,0.5]
Interaction: 18523/20016 Out of bounds for computation -> nan[0.001,0.5]
18524
18525
Interaction: 18526/20016 Out of bounds for computation -> 1.32673[0.001,0.5]
18527
Interaction: 18528/20016 Out of bounds for computation -> 0.704798[0.001,0.5]
18529
18530
18531
18532
18533
Interaction: 18534/20016 Out of bounds for computation -> 1.97181[0.001,0.5]
Interaction: 18535/20016 Out of bounds for computation -> 0.921182[0.001,0.5]
Interaction: 18536/20016 Out of bounds for computation -> 0.565858[0.001,0.5]
Interaction: 18537/20016 Out of bounds for computation -> 0.727893[0.001,0.5]
18538
18539
18540
18541
18542
18543
18544
18545
Interaction: 18546/20016 Out of bounds for computation -> 1.4757[0.001,0.5]
Interaction: 18547/20016 Out of bounds for computation -> 0.720239[0.001,0.5]
Interaction: 18548/20016 Out of bounds for computation -> 0.586858[0.001,0.5]
18549
Interaction: 18550/20016 Out of bounds for computation -> 0.931966[0.001,0.5]
18551
18552
Interaction: 18553/20016 Out of bounds for computation -> 2.29531[0.001,0.5]
Interaction: 18554/20016 Out of bounds for computation -> 0.828349[0.001,0.5]
Interaction: 18555/20016 Out of bounds for computation -> 0.597729[0.001,0.5]
18556
Interaction: 18557/20016 Out of bounds for computation -> 1.03379[0.001,0.5]
18558
18559
Interaction: 18560/20016 Out of bounds for computation -> 2.19053[0.001,0.5]
18561
Interaction: 18562/20016 Out of bounds for computation -> 1.03536[0.001,0.5]
Interaction: 18563/20016 Out of bounds for computation -> 0.765264[0.001,0.5]
18564
Interaction: 18565/20016 Out of bounds for computation -> 2.04702[0.001,0.5]
18566
Interaction: 18567/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 18568/20016 Out of bounds for computation -> 0.671055[0.001,0.5]
18569
Interaction: 18570/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 18571/20016 Out of bounds for computation -> 0.688101[0.001,0.5]
18572
18573
Interaction: 18574/20016 Out of bounds for computation -> 1.43728[0.001,0.5]
18575
18576
Interaction: 18577/20016 Out of bounds for computation -> 0.619779[0.001,0.5]
Interaction: 18578/20016 Out of bounds for computation -> 2.2365[0.001,0.5]
Interaction: 18579/20016 Out of bounds for computation -> 0.670079[0.001,0.5]
18580
Interaction: 18581/20016 Out of bounds for computation -> 1.82768[0.001,0.5]
Interaction: 18582/20016 Out of bounds for computation -> 1.47934[0.001,0.5]
18583
18584
Interaction: 18585/20016 Out of bounds for computation -> 1.4163[0.001,0.5]
Interaction: 18586/20016 Out of bounds for computation -> 1.74883[0.001,0.5]
Interaction: 18587/20016 Out of bounds for computation -> 1.50027[0.001,0.5]
Interaction: 18588/20016 Out of bounds for computation -> 0.752083[0.001,0.5]
18589
18590
18591
Interaction: 18592/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 18593/20016 Out of bounds for computation -> 1.55004[0.001,0.5]
18594
Interaction: 18595/20016 Out of bounds for computation -> 2.34982[0.001,0.5]
18596
18597
Interaction: 18598/20016 Out of bounds for computation -> 2.77152[0.001,0.5]
Interaction: 18599/20016 Out of bounds for computation -> 1.47207[0.001,0.5]
18600
Interaction: 18601/20016 Out of bounds for computation -> 2.83944[0.001,0.5]
Interaction: 18602/20016 Out of bounds for computation -> 2.39534[0.001,0.5]
Interaction: 18603/20016 Out of bounds for computation -> 1.08757[0.001,0.5]
Interaction: 18604/20016 Out of bounds for computation -> 1.75258[0.001,0.5]
Interaction: 18605/20016 Out of bounds for computation -> 1.55342[0.001,0.5]
Interaction: 18606/20016 Out of bounds for computation -> 1.62263[0.001,0.5]
18607
Interaction: 18608/20016 Out of bounds for computation -> 2.23526[0.001,0.5]
18609
Interaction: 18610/20016 Out of bounds for computation -> 1.73603[0.001,0.5]
Interaction: 18611/20016 Out of bounds for computation -> 1.80839[0.001,0.5]
Interaction: 18612/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 18613/20016 Out of bounds for computation -> 0.598908[0.001,0.5]
Interaction: 18614/20016 Out of bounds for computation -> 1.50573[0.001,0.5]
18615
Interaction: 18616/20016 Out of bounds for computation -> 0.5397[0.001,0.5]
18617
18618
18619
Interaction: 18620/20016 Out of bounds for computation -> 0.519569[0.001,0.5]
18621
Interaction: 18622/20016 Out of bounds for computation -> 1.41983[0.001,0.5]
Interaction: 18623/20016 Out of bounds for computation -> nan[0.001,0.5]
18624
18625
Interaction: 18626/20016 Out of bounds for computation -> 0.519131[0.001,0.5]
Interaction: 18627/20016 Out of bounds for computation -> 0.585723[0.001,0.5]
18628
18629
18630
Interaction: 18631/20016 Out of bounds for computation -> 0.638095[0.001,0.5]
18632
18633
18634
Interaction: 18635/20016 Out of bounds for computation -> 1.59169[0.001,0.5]
Interaction: 18636/20016 Out of bounds for computation -> 1.44089[0.001,0.5]
18637
Interaction: 18638/20016 Out of bounds for computation -> 0.570341[0.001,0.5]
Interaction: 18639/20016 Out of bounds for computation -> 1.99652[0.001,0.5]
Interaction: 18640/20016 Out of bounds for computation -> 0.823513[0.001,0.5]
18641
18642
Interaction: 18643/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 18644/20016 Out of bounds for computation -> 0.805151[0.001,0.5]
18645
18646
18647
18648
Interaction: 18649/20016 Out of bounds for computation -> 0.703528[0.001,0.5]
18650
Interaction: 18651/20016 Out of bounds for computation -> 0.691363[0.001,0.5]
18652
18653
18654
Interaction: 18655/20016 Out of bounds for computation -> 0.984245[0.001,0.5]
18656
18657
18658
18659
18660
Interaction: 18661/20016 Out of bounds for computation -> 0.626869[0.001,0.5]
Interaction: 18662/20016 Out of bounds for computation -> 1.50788[0.001,0.5]
18663
Interaction: 18664/20016 Out of bounds for computation -> 0.679872[0.001,0.5]
Interaction: 18665/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 18666/20016 Out of bounds for computation -> 1.66392[0.001,0.5]
Interaction: 18667/20016 Out of bounds for computation -> 0.50261[0.001,0.5]
18668
Interaction: 18669/20016 Out of bounds for computation -> nan[0.001,0.5]
18670
Interaction: 18671/20016 Out of bounds for computation -> 0.726492[0.001,0.5]
18672
18673
18674
18675
18676
Interaction: 18677/20016 Out of bounds for computation -> 0.536649[0.001,0.5]
18678
Interaction: 18679/20016 Out of bounds for computation -> 0.973704[0.001,0.5]
Interaction: 18680/20016 Out of bounds for computation -> 1.41501[0.001,0.5]
18681
18682
Interaction: 18683/20016 Out of bounds for computation -> 0.715704[0.001,0.5]
18684
18685
Interaction: 18686/20016 Out of bounds for computation -> 2.51264[0.001,0.5]
Interaction: 18687/20016 Out of bounds for computation -> 1.59496[0.001,0.5]
18688
18689
Interaction: 18690/20016 Out of bounds for computation -> 0.572329[0.001,0.5]
18691
Interaction: 18692/20016 Out of bounds for computation -> 0.550465[0.001,0.5]
18693
18694
18695
Interaction: 18696/20016 Out of bounds for computation -> 0.930232[0.001,0.5]
Interaction: 18697/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 18698/20016 Out of bounds for computation -> 2.50162[0.001,0.5]
Interaction: 18699/20016 Out of bounds for computation -> 0.877746[0.001,0.5]
Interaction: 18700/20016 Out of bounds for computation -> 2.33909[0.001,0.5]
Interaction: 18701/20016 Out of bounds for computation -> 0.956086[0.001,0.5]
18702
18703
Interaction: 18704/20016 Out of bounds for computation -> 2.09152[0.001,0.5]
18705
18706
Interaction: 18707/20016 Out of bounds for computation -> 0.912056[0.001,0.5]
18708
Interaction: 18709/20016 Out of bounds for computation -> 0.64014[0.001,0.5]
18710
Interaction: 18711/20016 Out of bounds for computation -> 1.01538[0.001,0.5]
Interaction: 18712/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 18713/20016 Out of bounds for computation -> 2.07828[0.001,0.5]
Interaction: 18714/20016 Out of bounds for computation -> 0.807724[0.001,0.5]
Interaction: 18715/20016 Out of bounds for computation -> 0.598261[0.001,0.5]
18716
Interaction: 18717/20016 Out of bounds for computation -> 1.42229[0.001,0.5]
18718
18719
Interaction: 18720/20016 Out of bounds for computation -> 1.86422[0.001,0.5]
18721
18722
Interaction: 18723/20016 Out of bounds for computation -> 1.74165[0.001,0.5]
Interaction: 18724/20016 Out of bounds for computation -> 2.48055[0.001,0.5]
18725
18726
Interaction: 18727/20016 Out of bounds for computation -> 0.764446[0.001,0.5]
18728
18729
18730
18731
18732
18733
Interaction: 18734/20016 Out of bounds for computation -> 0.814349[0.001,0.5]
Interaction: 18735/20016 Out of bounds for computation -> 0.699036[0.001,0.5]
18736
18737
Interaction: 18738/20016 Out of bounds for computation -> 0.772347[0.001,0.5]
Interaction: 18739/20016 Out of bounds for computation -> 0.548441[0.001,0.5]
18740
Interaction: 18741/20016 Out of bounds for computation -> 0.582567[0.001,0.5]
18742
18743
Interaction: 18744/20016 Out of bounds for computation -> 0.535182[0.001,0.5]
18745
Interaction: 18746/20016 Out of bounds for computation -> 0.965199[0.001,0.5]
18747
18748
Interaction: 18749/20016 Out of bounds for computation -> 0.584558[0.001,0.5]
Interaction: 18750/20016 Out of bounds for computation -> 1.5088[0.001,0.5]
18751
Interaction: 18752/20016 Out of bounds for computation -> nan[0.001,0.5]
18753
18754
18755
Interaction: 18756/20016 Out of bounds for computation -> 1.43274[0.001,0.5]
18757
Interaction: 18758/20016 Out of bounds for computation -> 0.581586[0.001,0.5]
Interaction: 18759/20016 Out of bounds for computation -> 1.47991[0.001,0.5]
18760
Interaction: 18761/20016 Out of bounds for computation -> 2.2677[0.001,0.5]
Interaction: 18762/20016 Out of bounds for computation -> 0.692216[0.001,0.5]
Interaction: 18763/20016 Out of bounds for computation -> 1.49855[0.001,0.5]
Interaction: 18764/20016 Out of bounds for computation -> 2.57727[0.001,0.5]
18765
Interaction: 18766/20016 Out of bounds for computation -> 1.44697[0.001,0.5]
18767
Interaction: 18768/20016 Out of bounds for computation -> 0.742187[0.001,0.5]
18769
Interaction: 18770/20016 Out of bounds for computation -> 1.45315[0.001,0.5]
18771
18772
18773
18774
18775
Interaction: 18776/20016 Out of bounds for computation -> 0.649526[0.001,0.5]
Interaction: 18777/20016 Out of bounds for computation -> 1.66609[0.001,0.5]
18778
Interaction: 18779/20016 Out of bounds for computation -> nan[0.001,0.5]
18780
Interaction: 18781/20016 Out of bounds for computation -> 0.869025[0.001,0.5]
18782
Interaction: 18783/20016 Out of bounds for computation -> 0.541306[0.001,0.5]
Interaction: 18784/20016 Out of bounds for computation -> 0.569161[0.001,0.5]
18785
Interaction: 18786/20016 Out of bounds for computation -> 0.580414[0.001,0.5]
18787
Interaction: 18788/20016 Out of bounds for computation -> 1.40396[0.001,0.5]
Interaction: 18789/20016 Out of bounds for computation -> 0.717744[0.001,0.5]
Interaction: 18790/20016 Out of bounds for computation -> 0.70819[0.001,0.5]
18791
Interaction: 18792/20016 Out of bounds for computation -> 2.40459[0.001,0.5]
18793
18794
Interaction: 18795/20016 Out of bounds for computation -> 0.768762[0.001,0.5]
Interaction: 18796/20016 Out of bounds for computation -> 0.825738[0.001,0.5]
Interaction: 18797/20016 Out of bounds for computation -> 2.06434[0.001,0.5]
Interaction: 18798/20016 Out of bounds for computation -> 0.563237[0.001,0.5]
Interaction: 18799/20016 Out of bounds for computation -> 1.6854[0.001,0.5]
Interaction: 18800/20016 Out of bounds for computation -> 2.21231[0.001,0.5]
Interaction: 18801/20016 Out of bounds for computation -> 0.780434[0.001,0.5]
18802
18803
18804
Interaction: 18805/20016 Out of bounds for computation -> 0.589356[0.001,0.5]
Interaction: 18806/20016 Out of bounds for computation -> 0.730399[0.001,0.5]
Interaction: 18807/20016 Out of bounds for computation -> 1.4636[0.001,0.5]
18808
Interaction: 18809/20016 Out of bounds for computation -> 2.31594[0.001,0.5]
Interaction: 18810/20016 Out of bounds for computation -> 1.9884[0.001,0.5]
Interaction: 18811/20016 Out of bounds for computation -> 1.76679[0.001,0.5]
Interaction: 18812/20016 Out of bounds for computation -> 1.63395[0.001,0.5]
18813
18814
18815
18816
Interaction: 18817/20016 Out of bounds for computation -> nan[0.001,0.5]
18818
Interaction: 18819/20016 Out of bounds for computation -> 1.16326[0.001,0.5]
18820
Interaction: 18821/20016 Out of bounds for computation -> 1.90865[0.001,0.5]
Interaction: 18822/20016 Out of bounds for computation -> 1.34272[0.001,0.5]
18823
18824
Interaction: 18825/20016 Out of bounds for computation -> 1.16001[0.001,0.5]
18826
Interaction: 18827/20016 Out of bounds for computation -> 0.558484[0.001,0.5]
18828
18829
18830
18831
18832
18833
Interaction: 18834/20016 Out of bounds for computation -> 1.89717[0.001,0.5]
Interaction: 18835/20016 Out of bounds for computation -> 0.605696[0.001,0.5]
18836
18837
18838
18839
18840
Interaction: 18841/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 18842/20016 Out of bounds for computation -> 0.573124[0.001,0.5]
18843
18844
18845
Interaction: 18846/20016 Out of bounds for computation -> 1.65827[0.001,0.5]
Interaction: 18847/20016 Out of bounds for computation -> 1.77981[0.001,0.5]
Interaction: 18848/20016 Out of bounds for computation -> 1.41301[0.001,0.5]
18849
18850
18851
Interaction: 18852/20016 Out of bounds for computation -> 1.94047[0.001,0.5]
18853
Interaction: 18854/20016 Out of bounds for computation -> 0.741138[0.001,0.5]
Interaction: 18855/20016 Out of bounds for computation -> 1.51608[0.001,0.5]
18856
Interaction: 18857/20016 Out of bounds for computation -> 0.807314[0.001,0.5]
Interaction: 18858/20016 Out of bounds for computation -> 0.600068[0.001,0.5]
Interaction: 18859/20016 Out of bounds for computation -> 0.51226[0.001,0.5]
Interaction: 18860/20016 Out of bounds for computation -> 0.845843[0.001,0.5]
18861
18862
Interaction: 18863/20016 Out of bounds for computation -> 0.808204[0.001,0.5]
18864
Interaction: 18865/20016 Out of bounds for computation -> 2.1703[0.001,0.5]
18866
Interaction: 18867/20016 Out of bounds for computation -> 1.44268[0.001,0.5]
18868
18869
18870
Interaction: 18871/20016 Out of bounds for computation -> 0.625407[0.001,0.5]
18872
18873
Interaction: 18874/20016 Out of bounds for computation -> 1.86736[0.001,0.5]
Interaction: 18875/20016 Out of bounds for computation -> 1.8473[0.001,0.5]
Interaction: 18876/20016 Out of bounds for computation -> 1.45227[0.001,0.5]
Interaction: 18877/20016 Out of bounds for computation -> nan[0.001,0.5]
18878
Interaction: 18879/20016 Out of bounds for computation -> 0.745666[0.001,0.5]
18880
18881
18882
18883
Interaction: 18884/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 18885/20016 Out of bounds for computation -> 2.2611[0.001,0.5]
18886
18887
18888
Interaction: 18889/20016 Out of bounds for computation -> 1.49168[0.001,0.5]
Interaction: 18890/20016 Out of bounds for computation -> 0.769529[0.001,0.5]
18891
18892
18893
Interaction: 18894/20016 Out of bounds for computation -> 0.719522[0.001,0.5]
18895
18896
18897
18898
Interaction: 18899/20016 Out of bounds for computation -> 0.661752[0.001,0.5]
Interaction: 18900/20016 Out of bounds for computation -> 0.660254[0.001,0.5]
18901
Interaction: 18902/20016 Out of bounds for computation -> 2.6788[0.001,0.5]
Interaction: 18903/20016 Out of bounds for computation -> 2.69917[0.001,0.5]
Interaction: 18904/20016 Out of bounds for computation -> 1.48176[0.001,0.5]
Interaction: 18905/20016 Out of bounds for computation -> 0.631507[0.001,0.5]
Interaction: 18906/20016 Out of bounds for computation -> 0.661823[0.001,0.5]
18907
18908
Interaction: 18909/20016 Out of bounds for computation -> 0.96198[0.001,0.5]
Interaction: 18910/20016 Out of bounds for computation -> 0.795737[0.001,0.5]
18911
Interaction: 18912/20016 Out of bounds for computation -> 0.619057[0.001,0.5]
18913
Interaction: 18914/20016 Out of bounds for computation -> 0.855348[0.001,0.5]
Interaction: 18915/20016 Out of bounds for computation -> 1.1321[0.001,0.5]
Interaction: 18916/20016 Out of bounds for computation -> 1.27638[0.001,0.5]
18917
18918
Interaction: 18919/20016 Out of bounds for computation -> 1.43092[0.001,0.5]
Interaction: 18920/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 18921/20016 Out of bounds for computation -> 0.766459[0.001,0.5]
Interaction: 18922/20016 Out of bounds for computation -> 2.28557[0.001,0.5]
18923
18924
Interaction: 18925/20016 Out of bounds for computation -> 0.751968[0.001,0.5]
18926
18927
18928
Interaction: 18929/20016 Out of bounds for computation -> 0.750991[0.001,0.5]
Interaction: 18930/20016 Out of bounds for computation -> 0.747101[0.001,0.5]
Interaction: 18931/20016 Out of bounds for computation -> 0.655118[0.001,0.5]
18932
18933
Interaction: 18934/20016 Out of bounds for computation -> 2.45152[0.001,0.5]
18935
Interaction: 18936/20016 Out of bounds for computation -> 1.27623[0.001,0.5]
18937
18938
Interaction: 18939/20016 Out of bounds for computation -> 2.19607[0.001,0.5]
Interaction: 18940/20016 Out of bounds for computation -> 0.690684[0.001,0.5]
Interaction: 18941/20016 Out of bounds for computation -> 2.70048[0.001,0.5]
Interaction: 18942/20016 Out of bounds for computation -> 0.509523[0.001,0.5]
Interaction: 18943/20016 Out of bounds for computation -> 1.17963[0.001,0.5]
18944
18945
Interaction: 18946/20016 Out of bounds for computation -> 0.508349[0.001,0.5]
Interaction: 18947/20016 Out of bounds for computation -> 1.24994[0.001,0.5]
18948
Interaction: 18949/20016 Out of bounds for computation -> 2.2456[0.001,0.5]
18950
Interaction: 18951/20016 Out of bounds for computation -> 0.696189[0.001,0.5]
Interaction: 18952/20016 Out of bounds for computation -> 2.01096[0.001,0.5]
18953
Interaction: 18954/20016 Out of bounds for computation -> 2.14428[0.001,0.5]
Interaction: 18955/20016 Out of bounds for computation -> 2.37137[0.001,0.5]
Interaction: 18956/20016 Out of bounds for computation -> 0.851378[0.001,0.5]
18957
Interaction: 18958/20016 Out of bounds for computation -> 1.53994[0.001,0.5]
18959
Interaction: 18960/20016 Out of bounds for computation -> 0.678408[0.001,0.5]
Interaction: 18961/20016 Out of bounds for computation -> 1.43019[0.001,0.5]
18962
Interaction: 18963/20016 Out of bounds for computation -> 0.573637[0.001,0.5]
Interaction: 18964/20016 Out of bounds for computation -> 0.650955[0.001,0.5]
18965
18966
Interaction: 18967/20016 Out of bounds for computation -> 1.71409[0.001,0.5]
18968
18969
Interaction: 18970/20016 Out of bounds for computation -> 0.722157[0.001,0.5]
Interaction: 18971/20016 Out of bounds for computation -> 0.638701[0.001,0.5]
18972
18973
Interaction: 18974/20016 Out of bounds for computation -> 2.31929[0.001,0.5]
18975
Interaction: 18976/20016 Out of bounds for computation -> 0.620276[0.001,0.5]
Interaction: 18977/20016 Out of bounds for computation -> 0.559346[0.001,0.5]
Interaction: 18978/20016 Out of bounds for computation -> 0.668205[0.001,0.5]
Interaction: 18979/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 18980/20016 Out of bounds for computation -> 2.31317[0.001,0.5]
18981
18982
18983
Interaction: 18984/20016 Out of bounds for computation -> nan[0.001,0.5]
18985
18986
Interaction: 18987/20016 Out of bounds for computation -> 0.509922[0.001,0.5]
18988
18989
Interaction: 18990/20016 Out of bounds for computation -> 1.47282[0.001,0.5]
18991
Interaction: 18992/20016 Out of bounds for computation -> 0.743918[0.001,0.5]
Interaction: 18993/20016 Out of bounds for computation -> 0.72587[0.001,0.5]
Interaction: 18994/20016 Out of bounds for computation -> 0.707721[0.001,0.5]
Interaction: 18995/20016 Out of bounds for computation -> 0.759432[0.001,0.5]
Interaction: 18996/20016 Out of bounds for computation -> 1.51052[0.001,0.5]
18997
18998
18999
19000
Interaction: 19001/20016 Out of bounds for computation -> 0.705531[0.001,0.5]
Interaction: 19002/20016 Out of bounds for computation -> 0.621488[0.001,0.5]
Interaction: 19003/20016 Out of bounds for computation -> 0.730016[0.001,0.5]
Interaction: 19004/20016 Out of bounds for computation -> 0.844614[0.001,0.5]
Interaction: 19005/20016 Out of bounds for computation -> 1.22636[0.001,0.5]
19006
19007
19008
19009
19010
19011
19012
Interaction: 19013/20016 Out of bounds for computation -> 1.38685[0.001,0.5]
Interaction: 19014/20016 Out of bounds for computation -> 1.21902[0.001,0.5]
Interaction: 19015/20016 Out of bounds for computation -> nan[0.001,0.5]
19016
Interaction: 19017/20016 Out of bounds for computation -> 1.67719[0.001,0.5]
Interaction: 19018/20016 Out of bounds for computation -> 2.43827[0.001,0.5]
19019
19020
19021
19022
Interaction: 19023/20016 Out of bounds for computation -> 2.31806[0.001,0.5]
Interaction: 19024/20016 Out of bounds for computation -> 0.521294[0.001,0.5]
19025
Interaction: 19026/20016 Out of bounds for computation -> 1.40929[0.001,0.5]
19027
Interaction: 19028/20016 Out of bounds for computation -> 0.744392[0.001,0.5]
Interaction: 19029/20016 Out of bounds for computation -> 0.617043[0.001,0.5]
Interaction: 19030/20016 Out of bounds for computation -> 0.802891[0.001,0.5]
Interaction: 19031/20016 Out of bounds for computation -> 0.891049[0.001,0.5]
19032
19033
19034
19035
19036
Interaction: 19037/20016 Out of bounds for computation -> 0.91101[0.001,0.5]
19038
19039
Interaction: 19040/20016 Out of bounds for computation -> 0.755021[0.001,0.5]
19041
19042
Interaction: 19043/20016 Out of bounds for computation -> 1.60004[0.001,0.5]
Interaction: 19044/20016 Out of bounds for computation -> 0.952678[0.001,0.5]
19045
Interaction: 19046/20016 Out of bounds for computation -> 2.63877[0.001,0.5]
Interaction: 19047/20016 Out of bounds for computation -> 2.28193[0.001,0.5]
19048
19049
19050
19051
Interaction: 19052/20016 Out of bounds for computation -> 2.78014[0.001,0.5]
19053
19054
Interaction: 19055/20016 Out of bounds for computation -> 1.36181[0.001,0.5]
19056
19057
Interaction: 19058/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 19059/20016 Out of bounds for computation -> 0.682247[0.001,0.5]
Interaction: 19060/20016 Out of bounds for computation -> 0.720997[0.001,0.5]
Interaction: 19061/20016 Out of bounds for computation -> 2.32353[0.001,0.5]
Interaction: 19062/20016 Out of bounds for computation -> nan[0.001,0.5]
19063
Interaction: 19064/20016 Out of bounds for computation -> 0.542272[0.001,0.5]
Interaction: 19065/20016 Out of bounds for computation -> 2.14935[0.001,0.5]
Interaction: 19066/20016 Out of bounds for computation -> 1.47071[0.001,0.5]
Interaction: 19067/20016 Out of bounds for computation -> 1.74741[0.001,0.5]
Interaction: 19068/20016 Out of bounds for computation -> nan[0.001,0.5]
19069
Interaction: 19070/20016 Out of bounds for computation -> 0.963026[0.001,0.5]
Interaction: 19071/20016 Out of bounds for computation -> 1.27887[0.001,0.5]
Interaction: 19072/20016 Out of bounds for computation -> 0.853909[0.001,0.5]
Interaction: 19073/20016 Out of bounds for computation -> 1.39162[0.001,0.5]
Interaction: 19074/20016 Out of bounds for computation -> nan[0.001,0.5]
19075
Interaction: 19076/20016 Out of bounds for computation -> 0.952699[0.001,0.5]
Interaction: 19077/20016 Out of bounds for computation -> 2.6222[0.001,0.5]
19078
19079
19080
Interaction: 19081/20016 Out of bounds for computation -> 0.835918[0.001,0.5]
Interaction: 19082/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 19083/20016 Out of bounds for computation -> 2.39953[0.001,0.5]
19084
Interaction: 19085/20016 Out of bounds for computation -> 1.7908[0.001,0.5]
19086
19087
19088
19089
Interaction: 19090/20016 Out of bounds for computation -> 1.52658[0.001,0.5]
Interaction: 19091/20016 Out of bounds for computation -> 1.5467[0.001,0.5]
Interaction: 19092/20016 Out of bounds for computation -> 1.71054[0.001,0.5]
19093
19094
19095
Interaction: 19096/20016 Out of bounds for computation -> 0.877709[0.001,0.5]
Interaction: 19097/20016 Out of bounds for computation -> 1.67787[0.001,0.5]
19098
19099
19100
19101
Interaction: 19102/20016 Out of bounds for computation -> 0.546647[0.001,0.5]
19103
Interaction: 19104/20016 Out of bounds for computation -> 1.64309[0.001,0.5]
Interaction: 19105/20016 Out of bounds for computation -> 1.22843[0.001,0.5]
19106
Interaction: 19107/20016 Out of bounds for computation -> 1.43175[0.001,0.5]
Interaction: 19108/20016 Out of bounds for computation -> 2.38427[0.001,0.5]
Interaction: 19109/20016 Out of bounds for computation -> 2.58574[0.001,0.5]
19110
19111
Interaction: 19112/20016 Out of bounds for computation -> 1.97021[0.001,0.5]
Interaction: 19113/20016 Out of bounds for computation -> 0.658276[0.001,0.5]
Interaction: 19114/20016 Out of bounds for computation -> 0.527518[0.001,0.5]
Interaction: 19115/20016 Out of bounds for computation -> 2.7113[0.001,0.5]
19116
Interaction: 19117/20016 Out of bounds for computation -> 2.1718[0.001,0.5]
19118
19119
Interaction: 19120/20016 Out of bounds for computation -> 0.685424[0.001,0.5]
Interaction: 19121/20016 Out of bounds for computation -> 1.46336[0.001,0.5]
Interaction: 19122/20016 Out of bounds for computation -> 1.59052[0.001,0.5]
19123
Interaction: 19124/20016 Out of bounds for computation -> 0.679821[0.001,0.5]
Interaction: 19125/20016 Out of bounds for computation -> 2.70241[0.001,0.5]
19126
Interaction: 19127/20016 Out of bounds for computation -> 0.539223[0.001,0.5]
Interaction: 19128/20016 Out of bounds for computation -> 0.682089[0.001,0.5]
19129
19130
Interaction: 19131/20016 Out of bounds for computation -> 0.886537[0.001,0.5]
Interaction: 19132/20016 Out of bounds for computation -> 2.39227[0.001,0.5]
Interaction: 19133/20016 Out of bounds for computation -> 0.578472[0.001,0.5]
19134
19135
Interaction: 19136/20016 Out of bounds for computation -> 2.01647[0.001,0.5]
19137
19138
19139
Interaction: 19140/20016 Out of bounds for computation -> 1.64742[0.001,0.5]
Interaction: 19141/20016 Out of bounds for computation -> 0.870622[0.001,0.5]
19142
19143
Interaction: 19144/20016 Out of bounds for computation -> 0.52821[0.001,0.5]
19145
Interaction: 19146/20016 Out of bounds for computation -> nan[0.001,0.5]
19147
19148
19149
19150
Interaction: 19151/20016 Out of bounds for computation -> 0.796811[0.001,0.5]
Interaction: 19152/20016 Out of bounds for computation -> 0.692588[0.001,0.5]
19153
19154
19155
Interaction: 19156/20016 Out of bounds for computation -> 0.740073[0.001,0.5]
19157
19158
19159
19160
19161
Interaction: 19162/20016 Out of bounds for computation -> 0.790251[0.001,0.5]
19163
19164
19165
Interaction: 19166/20016 Out of bounds for computation -> 1.818[0.001,0.5]
19167
19168
Interaction: 19169/20016 Out of bounds for computation -> 1.37039[0.001,0.5]
19170
19171
19172
19173
Interaction: 19174/20016 Out of bounds for computation -> 2.12374[0.001,0.5]
19175
19176
19177
Interaction: 19178/20016 Out of bounds for computation -> 1.1801[0.001,0.5]
Interaction: 19179/20016 Out of bounds for computation -> 1.96166[0.001,0.5]
19180
Interaction: 19181/20016 Out of bounds for computation -> 0.653362[0.001,0.5]
19182
Interaction: 19183/20016 Out of bounds for computation -> 0.816658[0.001,0.5]
19184
19185
Interaction: 19186/20016 Out of bounds for computation -> 1.35843[0.001,0.5]
19187
19188
19189
19190
Interaction: 19191/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 19192/20016 Out of bounds for computation -> 0.654612[0.001,0.5]
19193
Interaction: 19194/20016 Out of bounds for computation -> 0.616527[0.001,0.5]
Interaction: 19195/20016 Out of bounds for computation -> 1.60825[0.001,0.5]
Interaction: 19196/20016 Out of bounds for computation -> nan[0.001,0.5]
19197
19198
19199
19200
19201
19202
Interaction: 19203/20016 Out of bounds for computation -> 0.619089[0.001,0.5]
19204
Interaction: 19205/20016 Out of bounds for computation -> 1.08174[0.001,0.5]
19206
19207
Interaction: 19208/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 19209/20016 Out of bounds for computation -> 0.664866[0.001,0.5]
19210
Interaction: 19211/20016 Out of bounds for computation -> 0.514834[0.001,0.5]
Interaction: 19212/20016 Out of bounds for computation -> 1.85355[0.001,0.5]
Interaction: 19213/20016 Out of bounds for computation -> 2.80258[0.001,0.5]
Interaction: 19214/20016 Out of bounds for computation -> 0.764229[0.001,0.5]
Interaction: 19215/20016 Out of bounds for computation -> 1.5253[0.001,0.5]
Interaction: 19216/20016 Out of bounds for computation -> 0.784654[0.001,0.5]
19217
Interaction: 19218/20016 Out of bounds for computation -> 1.46248[0.001,0.5]
19219
19220
Interaction: 19221/20016 Out of bounds for computation -> 1.73844[0.001,0.5]
19222
Interaction: 19223/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 19224/20016 Out of bounds for computation -> 0.780129[0.001,0.5]
Interaction: 19225/20016 Out of bounds for computation -> 1.49954[0.001,0.5]
19226
Interaction: 19227/20016 Out of bounds for computation -> 0.90839[0.001,0.5]
19228
19229
Interaction: 19230/20016 Out of bounds for computation -> 0.549366[0.001,0.5]
19231
Interaction: 19232/20016 Out of bounds for computation -> 2.63964[0.001,0.5]
19233
19234
19235
19236
19237
19238
Interaction: 19239/20016 Out of bounds for computation -> 0.633115[0.001,0.5]
19240
Interaction: 19241/20016 Out of bounds for computation -> 0.524009[0.001,0.5]
Interaction: 19242/20016 Out of bounds for computation -> 0.502473[0.001,0.5]
Interaction: 19243/20016 Out of bounds for computation -> 0.730201[0.001,0.5]
19244
19245
Interaction: 19246/20016 Out of bounds for computation -> 0.846442[0.001,0.5]
Interaction: 19247/20016 Out of bounds for computation -> 2.38067[0.001,0.5]
19248
19249
Interaction: 19250/20016 Out of bounds for computation -> 0.827548[0.001,0.5]
19251
19252
Interaction: 19253/20016 Out of bounds for computation -> 0.791935[0.001,0.5]
19254
19255
Interaction: 19256/20016 Out of bounds for computation -> 0.923087[0.001,0.5]
19257
Interaction: 19258/20016 Out of bounds for computation -> 0.558386[0.001,0.5]
Interaction: 19259/20016 Out of bounds for computation -> 0.689956[0.001,0.5]
19260
19261
Interaction: 19262/20016 Out of bounds for computation -> 1.29757[0.001,0.5]
19263
19264
19265
19266
19267
Interaction: 19268/20016 Out of bounds for computation -> 0.924445[0.001,0.5]
Interaction: 19269/20016 Out of bounds for computation -> 1.44133[0.001,0.5]
19270
19271
Interaction: 19272/20016 Out of bounds for computation -> 2.42726[0.001,0.5]
19273
19274
Interaction: 19275/20016 Out of bounds for computation -> 0.661084[0.001,0.5]
19276
Interaction: 19277/20016 Out of bounds for computation -> 0.675978[0.001,0.5]
Interaction: 19278/20016 Out of bounds for computation -> 1.13232[0.001,0.5]
19279
19280
Interaction: 19281/20016 Out of bounds for computation -> 1.66774[0.001,0.5]
Interaction: 19282/20016 Out of bounds for computation -> 1.65145[0.001,0.5]
Interaction: 19283/20016 Out of bounds for computation -> 2.27995[0.001,0.5]
Interaction: 19284/20016 Out of bounds for computation -> 1.37048[0.001,0.5]
19285
19286
19287
Interaction: 19288/20016 Out of bounds for computation -> 0.711729[0.001,0.5]
19289
19290
19291
Interaction: 19292/20016 Out of bounds for computation -> 0.545446[0.001,0.5]
Interaction: 19293/20016 Out of bounds for computation -> 0.873167[0.001,0.5]
19294
19295
Interaction: 19296/20016 Out of bounds for computation -> 0.527086[0.001,0.5]
Interaction: 19297/20016 Out of bounds for computation -> 0.652404[0.001,0.5]
Interaction: 19298/20016 Out of bounds for computation -> 0.748599[0.001,0.5]
19299
Interaction: 19300/20016 Out of bounds for computation -> 1.20199[0.001,0.5]
19301
19302
19303
19304
Interaction: 19305/20016 Out of bounds for computation -> 0.514867[0.001,0.5]
19306
19307
19308
19309
19310
Interaction: 19311/20016 Out of bounds for computation -> 0.560901[0.001,0.5]
Interaction: 19312/20016 Out of bounds for computation -> 1.39391[0.001,0.5]
19313
19314
19315
Interaction: 19316/20016 Out of bounds for computation -> 2.50276[0.001,0.5]
19317
Interaction: 19318/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 19319/20016 Out of bounds for computation -> 0.855884[0.001,0.5]
19320
19321
Interaction: 19322/20016 Out of bounds for computation -> 2.58252[0.001,0.5]
19323
Interaction: 19324/20016 Out of bounds for computation -> 0.680572[0.001,0.5]
19325
Interaction: 19326/20016 Out of bounds for computation -> 1.02029[0.001,0.5]
19327
19328
Interaction: 19329/20016 Out of bounds for computation -> 1.06972[0.001,0.5]
Interaction: 19330/20016 Out of bounds for computation -> 0.560262[0.001,0.5]
Interaction: 19331/20016 Out of bounds for computation -> 0.61869[0.001,0.5]
19332
19333
Interaction: 19334/20016 Out of bounds for computation -> 0.830104[0.001,0.5]
19335
Interaction: 19336/20016 Out of bounds for computation -> 1.54231[0.001,0.5]
Interaction: 19337/20016 Out of bounds for computation -> 2.2159[0.001,0.5]
Interaction: 19338/20016 Out of bounds for computation -> 1.71359[0.001,0.5]
19339
Interaction: 19340/20016 Out of bounds for computation -> 0.654004[0.001,0.5]
19341
Interaction: 19342/20016 Out of bounds for computation -> nan[0.001,0.5]
19343
Interaction: 19344/20016 Out of bounds for computation -> 2.08281[0.001,0.5]
19345
19346
19347
Interaction: 19348/20016 Out of bounds for computation -> 1.59717[0.001,0.5]
19349
Interaction: 19350/20016 Out of bounds for computation -> 1.90044[0.001,0.5]
Interaction: 19351/20016 Out of bounds for computation -> 1.67895[0.001,0.5]
19352
Interaction: 19353/20016 Out of bounds for computation -> 0.764284[0.001,0.5]
Interaction: 19354/20016 Out of bounds for computation -> 0.773959[0.001,0.5]
Interaction: 19355/20016 Out of bounds for computation -> 2.18133[0.001,0.5]
19356
Interaction: 19357/20016 Out of bounds for computation -> 0.683824[0.001,0.5]
19358
19359
19360
Interaction: 19361/20016 Out of bounds for computation -> 1.10206[0.001,0.5]
19362
Interaction: 19363/20016 Out of bounds for computation -> 1.85582[0.001,0.5]
19364
19365
Interaction: 19366/20016 Out of bounds for computation -> 1.04334[0.001,0.5]
Interaction: 19367/20016 Out of bounds for computation -> 0.535727[0.001,0.5]
19368
19369
Interaction: 19370/20016 Out of bounds for computation -> 1.35903[0.001,0.5]
19371
19372
Interaction: 19373/20016 Out of bounds for computation -> nan[0.001,0.5]
19374
19375
Interaction: 19376/20016 Out of bounds for computation -> 0.609826[0.001,0.5]
19377
Interaction: 19378/20016 Out of bounds for computation -> nan[0.001,0.5]
19379
Interaction: 19380/20016 Out of bounds for computation -> 0.595587[0.001,0.5]
Interaction: 19381/20016 Out of bounds for computation -> 0.747691[0.001,0.5]
19382
19383
Interaction: 19384/20016 Out of bounds for computation -> 1.46481[0.001,0.5]
Interaction: 19385/20016 Out of bounds for computation -> 2.01523[0.001,0.5]
19386
19387
Interaction: 19388/20016 Out of bounds for computation -> 0.644017[0.001,0.5]
Interaction: 19389/20016 Out of bounds for computation -> 0.886268[0.001,0.5]
19390
Interaction: 19391/20016 Out of bounds for computation -> 1.50744[0.001,0.5]
19392
19393
Interaction: 19394/20016 Out of bounds for computation -> 0.525656[0.001,0.5]
Interaction: 19395/20016 Out of bounds for computation -> 2.17175[0.001,0.5]
Interaction: 19396/20016 Out of bounds for computation -> 1.08052[0.001,0.5]
19397
Interaction: 19398/20016 Out of bounds for computation -> 2.61204[0.001,0.5]
19399
Interaction: 19400/20016 Out of bounds for computation -> 0.821573[0.001,0.5]
19401
19402
19403
19404
Interaction: 19405/20016 Out of bounds for computation -> 0.956162[0.001,0.5]
Interaction: 19406/20016 Out of bounds for computation -> 0.743139[0.001,0.5]
Interaction: 19407/20016 Out of bounds for computation -> 1.4615[0.001,0.5]
19408
Interaction: 19409/20016 Out of bounds for computation -> 1.61069[0.001,0.5]
19410
Interaction: 19411/20016 Out of bounds for computation -> 2.98226[0.001,0.5]
Interaction: 19412/20016 Out of bounds for computation -> 2.06216[0.001,0.5]
19413
19414
Interaction: 19415/20016 Out of bounds for computation -> 1.47869[0.001,0.5]
19416
Interaction: 19417/20016 Out of bounds for computation -> 0.767941[0.001,0.5]
19418
19419
Interaction: 19420/20016 Out of bounds for computation -> 0.718568[0.001,0.5]
19421
19422
Interaction: 19423/20016 Out of bounds for computation -> 2.96155[0.001,0.5]
19424
19425
19426
19427
Interaction: 19428/20016 Out of bounds for computation -> 0.61933[0.001,0.5]
19429
Interaction: 19430/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 19431/20016 Out of bounds for computation -> 0.615291[0.001,0.5]
19432
19433
19434
19435
19436
Interaction: 19437/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 19438/20016 Out of bounds for computation -> 1.61862[0.001,0.5]
19439
19440
19441
Interaction: 19442/20016 Out of bounds for computation -> 0.557927[0.001,0.5]
19443
Interaction: 19444/20016 Out of bounds for computation -> 0.578871[0.001,0.5]
Interaction: 19445/20016 Out of bounds for computation -> 1.23472[0.001,0.5]
Interaction: 19446/20016 Out of bounds for computation -> 0.897022[0.001,0.5]
19447
Interaction: 19448/20016 Out of bounds for computation -> 1.26627[0.001,0.5]
Interaction: 19449/20016 Out of bounds for computation -> 0.917093[0.001,0.5]
Interaction: 19450/20016 Out of bounds for computation -> 1.53609[0.001,0.5]
19451
19452
19453
Interaction: 19454/20016 Out of bounds for computation -> 1.75279[0.001,0.5]
Interaction: 19455/20016 Out of bounds for computation -> nan[0.001,0.5]
19456
Interaction: 19457/20016 Out of bounds for computation -> 0.716004[0.001,0.5]
Interaction: 19458/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 19459/20016 Out of bounds for computation -> 0.695874[0.001,0.5]
19460
19461
19462
Interaction: 19463/20016 Out of bounds for computation -> 0.966861[0.001,0.5]
19464
19465
19466
Interaction: 19467/20016 Out of bounds for computation -> 0.824732[0.001,0.5]
19468
19469
19470
19471
Interaction: 19472/20016 Out of bounds for computation -> nan[0.001,0.5]
19473
Interaction: 19474/20016 Out of bounds for computation -> 1.11757[0.001,0.5]
Interaction: 19475/20016 Out of bounds for computation -> 2.04341[0.001,0.5]
Interaction: 19476/20016 Out of bounds for computation -> 1.21848[0.001,0.5]
19477
Interaction: 19478/20016 Out of bounds for computation -> nan[0.001,0.5]
19479
19480
19481
19482
19483
Interaction: 19484/20016 Out of bounds for computation -> 0.636127[0.001,0.5]
Interaction: 19485/20016 Out of bounds for computation -> 0.826806[0.001,0.5]
19486
19487
19488
19489
19490
19491
19492
Interaction: 19493/20016 Out of bounds for computation -> 1.81719[0.001,0.5]
19494
19495
19496
19497
Interaction: 19498/20016 Out of bounds for computation -> 2.34652[0.001,0.5]
Interaction: 19499/20016 Out of bounds for computation -> 2.07631[0.001,0.5]
19500
19501
Interaction: 19502/20016 Out of bounds for computation -> 2.02805[0.001,0.5]
19503
Interaction: 19504/20016 Out of bounds for computation -> 1.55593[0.001,0.5]
19505
19506
19507
19508
19509
19510
19511
19512
Interaction: 19513/20016 Out of bounds for computation -> 1.52491[0.001,0.5]
Interaction: 19514/20016 Out of bounds for computation -> 1.52697[0.001,0.5]
Interaction: 19515/20016 Out of bounds for computation -> 0.53225[0.001,0.5]
19516
19517
Interaction: 19518/20016 Out of bounds for computation -> 2.24483[0.001,0.5]
Interaction: 19519/20016 Out of bounds for computation -> 2.23151[0.001,0.5]
Interaction: 19520/20016 Out of bounds for computation -> 0.897734[0.001,0.5]
19521
19522
Interaction: 19523/20016 Out of bounds for computation -> 1.45793[0.001,0.5]
Interaction: 19524/20016 Out of bounds for computation -> 0.718329[0.001,0.5]
19525
Interaction: 19526/20016 Out of bounds for computation -> 0.664644[0.001,0.5]
Interaction: 19527/20016 Out of bounds for computation -> 0.964306[0.001,0.5]
19528
19529
19530
19531
19532
19533
Interaction: 19534/20016 Out of bounds for computation -> nan[0.001,0.5]
19535
Interaction: 19536/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 19537/20016 Out of bounds for computation -> 2.46884[0.001,0.5]
19538
Interaction: 19539/20016 Out of bounds for computation -> 0.859055[0.001,0.5]
19540
Interaction: 19541/20016 Out of bounds for computation -> 0.591691[0.001,0.5]
19542
Interaction: 19543/20016 Out of bounds for computation -> nan[0.001,0.5]
19544
Interaction: 19545/20016 Out of bounds for computation -> 1.4799[0.001,0.5]
Interaction: 19546/20016 Out of bounds for computation -> 0.94088[0.001,0.5]
Interaction: 19547/20016 Out of bounds for computation -> 0.643661[0.001,0.5]
19548
19549
19550
Interaction: 19551/20016 Out of bounds for computation -> 0.693858[0.001,0.5]
Interaction: 19552/20016 Out of bounds for computation -> 0.624885[0.001,0.5]
19553
Interaction: 19554/20016 Out of bounds for computation -> 0.664626[0.001,0.5]
19555
19556
19557
19558
Interaction: 19559/20016 Out of bounds for computation -> 2.03078[0.001,0.5]
Interaction: 19560/20016 Out of bounds for computation -> 0.587627[0.001,0.5]
19561
19562
Interaction: 19563/20016 Out of bounds for computation -> 1.44706[0.001,0.5]
19564
Interaction: 19565/20016 Out of bounds for computation -> 0.824467[0.001,0.5]
19566
19567
19568
Interaction: 19569/20016 Out of bounds for computation -> 0.731972[0.001,0.5]
Interaction: 19570/20016 Out of bounds for computation -> 0.729954[0.001,0.5]
19571
Interaction: 19572/20016 Out of bounds for computation -> 1.45517[0.001,0.5]
19573
Interaction: 19574/20016 Out of bounds for computation -> 0.626713[0.001,0.5]
Interaction: 19575/20016 Out of bounds for computation -> 1.57899[0.001,0.5]
19576
Interaction: 19577/20016 Out of bounds for computation -> nan[0.001,0.5]
19578
Interaction: 19579/20016 Out of bounds for computation -> 1.55703[0.001,0.5]
Interaction: 19580/20016 Out of bounds for computation -> 2.39022[0.001,0.5]
19581
19582
Interaction: 19583/20016 Out of bounds for computation -> 1.31306[0.001,0.5]
Interaction: 19584/20016 Out of bounds for computation -> 1.07635[0.001,0.5]
Interaction: 19585/20016 Out of bounds for computation -> 1.5442[0.001,0.5]
Interaction: 19586/20016 Out of bounds for computation -> 0.86762[0.001,0.5]
Interaction: 19587/20016 Out of bounds for computation -> 1.6732[0.001,0.5]
Interaction: 19588/20016 Out of bounds for computation -> 2.58953[0.001,0.5]
19589
Interaction: 19590/20016 Out of bounds for computation -> 2.43942[0.001,0.5]
Interaction: 19591/20016 Out of bounds for computation -> 0.846817[0.001,0.5]
Interaction: 19592/20016 Out of bounds for computation -> 0.656792[0.001,0.5]
19593
Interaction: 19594/20016 Out of bounds for computation -> 1.36388[0.001,0.5]
Interaction: 19595/20016 Out of bounds for computation -> 0.753357[0.001,0.5]
19596
Interaction: 19597/20016 Out of bounds for computation -> 0.595268[0.001,0.5]
19598
19599
Interaction: 19600/20016 Out of bounds for computation -> 2.81855[0.001,0.5]
19601
19602
19603
19604
19605
Interaction: 19606/20016 Out of bounds for computation -> 1.81732[0.001,0.5]
19607
Interaction: 19608/20016 Out of bounds for computation -> 0.6978[0.001,0.5]
Interaction: 19609/20016 Out of bounds for computation -> 1.46681[0.001,0.5]
19610
Interaction: 19611/20016 Out of bounds for computation -> 0.683499[0.001,0.5]
Interaction: 19612/20016 Out of bounds for computation -> 2.59545[0.001,0.5]
19613
19614
Interaction: 19615/20016 Out of bounds for computation -> 0.904236[0.001,0.5]
Interaction: 19616/20016 Out of bounds for computation -> 0.877001[0.001,0.5]
Interaction: 19617/20016 Out of bounds for computation -> 0.628898[0.001,0.5]
19618
19619
19620
Interaction: 19621/20016 Out of bounds for computation -> 1.26416[0.001,0.5]
19622
Interaction: 19623/20016 Out of bounds for computation -> 2.13419[0.001,0.5]
19624
19625
Interaction: 19626/20016 Out of bounds for computation -> 0.819988[0.001,0.5]
Interaction: 19627/20016 Out of bounds for computation -> 0.596766[0.001,0.5]
Interaction: 19628/20016 Out of bounds for computation -> 2.36181[0.001,0.5]
Interaction: 19629/20016 Out of bounds for computation -> 2.58102[0.001,0.5]
Interaction: 19630/20016 Out of bounds for computation -> 2.10709[0.001,0.5]
19631
Interaction: 19632/20016 Out of bounds for computation -> 1.108[0.001,0.5]
19633
19634
19635
19636
19637
Interaction: 19638/20016 Out of bounds for computation -> 1.20626[0.001,0.5]
19639
19640
19641
19642
Interaction: 19643/20016 Out of bounds for computation -> 1.53334[0.001,0.5]
19644
19645
19646
19647
Interaction: 19648/20016 Out of bounds for computation -> 2.14293[0.001,0.5]
19649
Interaction: 19650/20016 Out of bounds for computation -> 2.01815[0.001,0.5]
19651
Interaction: 19652/20016 Out of bounds for computation -> 0.812845[0.001,0.5]
Interaction: 19653/20016 Out of bounds for computation -> 0.769627[0.001,0.5]
Interaction: 19654/20016 Out of bounds for computation -> nan[0.001,0.5]
19655
Interaction: 19656/20016 Out of bounds for computation -> 2.173[0.001,0.5]
Interaction: 19657/20016 Out of bounds for computation -> 1.50421[0.001,0.5]
Interaction: 19658/20016 Out of bounds for computation -> 1.51364[0.001,0.5]
19659
19660
19661
Interaction: 19662/20016 Out of bounds for computation -> 0.927357[0.001,0.5]
19663
19664
Interaction: 19665/20016 Out of bounds for computation -> 0.811619[0.001,0.5]
19666
19667
Interaction: 19668/20016 Out of bounds for computation -> 2.12247[0.001,0.5]
19669
Interaction: 19670/20016 Out of bounds for computation -> 1.47126[0.001,0.5]
19671
Interaction: 19672/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 19673/20016 Out of bounds for computation -> 1.29382[0.001,0.5]
Interaction: 19674/20016 Out of bounds for computation -> 2.41785[0.001,0.5]
Interaction: 19675/20016 Out of bounds for computation -> 1.96362[0.001,0.5]
Interaction: 19676/20016 Out of bounds for computation -> 2.93295[0.001,0.5]
Interaction: 19677/20016 Out of bounds for computation -> 0.842505[0.001,0.5]
19678
19679
Interaction: 19680/20016 Out of bounds for computation -> 0.921441[0.001,0.5]
19681
19682
Interaction: 19683/20016 Out of bounds for computation -> 0.53757[0.001,0.5]
Interaction: 19684/20016 Out of bounds for computation -> 0.594839[0.001,0.5]
19685
19686
19687
Interaction: 19688/20016 Out of bounds for computation -> 0.594829[0.001,0.5]
Interaction: 19689/20016 Out of bounds for computation -> 1.36284[0.001,0.5]
Interaction: 19690/20016 Out of bounds for computation -> nan[0.001,0.5]
19691
Interaction: 19692/20016 Out of bounds for computation -> 2.25122[0.001,0.5]
Interaction: 19693/20016 Out of bounds for computation -> 1.33151[0.001,0.5]
19694
Interaction: 19695/20016 Out of bounds for computation -> 2.4307[0.001,0.5]
19696
Interaction: 19697/20016 Out of bounds for computation -> 0.565901[0.001,0.5]
Interaction: 19698/20016 Out of bounds for computation -> 1.70274[0.001,0.5]
Interaction: 19699/20016 Out of bounds for computation -> 2.35705[0.001,0.5]
19700
19701
Interaction: 19702/20016 Out of bounds for computation -> 1.41314[0.001,0.5]
Interaction: 19703/20016 Out of bounds for computation -> 2.68663[0.001,0.5]
19704
19705
19706
Interaction: 19707/20016 Out of bounds for computation -> 0.907247[0.001,0.5]
19708
19709
Interaction: 19710/20016 Out of bounds for computation -> 1.49815[0.001,0.5]
Interaction: 19711/20016 Out of bounds for computation -> 0.63148[0.001,0.5]
Interaction: 19712/20016 Out of bounds for computation -> 2.35087[0.001,0.5]
Interaction: 19713/20016 Out of bounds for computation -> 0.645902[0.001,0.5]
19714
19715
19716
Interaction: 19717/20016 Out of bounds for computation -> 0.564845[0.001,0.5]
19718
Interaction: 19719/20016 Out of bounds for computation -> 1.60483[0.001,0.5]
19720
19721
19722
19723
Interaction: 19724/20016 Out of bounds for computation -> 0.535849[0.001,0.5]
Interaction: 19725/20016 Out of bounds for computation -> nan[0.001,0.5]
19726
19727
19728
19729
Interaction: 19730/20016 Out of bounds for computation -> 0.579417[0.001,0.5]
Interaction: 19731/20016 Out of bounds for computation -> 1.33666[0.001,0.5]
Interaction: 19732/20016 Out of bounds for computation -> 2.10652[0.001,0.5]
19733
19734
Interaction: 19735/20016 Out of bounds for computation -> 2.36973[0.001,0.5]
19736
19737
Interaction: 19738/20016 Out of bounds for computation -> 2.40052[0.001,0.5]
Interaction: 19739/20016 Out of bounds for computation -> 2.24714[0.001,0.5]
19740
19741
Interaction: 19742/20016 Out of bounds for computation -> 0.804919[0.001,0.5]
Interaction: 19743/20016 Out of bounds for computation -> 0.66169[0.001,0.5]
Interaction: 19744/20016 Out of bounds for computation -> 0.795474[0.001,0.5]
Interaction: 19745/20016 Out of bounds for computation -> 1.82288[0.001,0.5]
Interaction: 19746/20016 Out of bounds for computation -> 2.74308[0.001,0.5]
19747
19748
Interaction: 19749/20016 Out of bounds for computation -> 0.54848[0.001,0.5]
19750
Interaction: 19751/20016 Out of bounds for computation -> 0.623352[0.001,0.5]
19752
Interaction: 19753/20016 Out of bounds for computation -> 0.52953[0.001,0.5]
Interaction: 19754/20016 Out of bounds for computation -> 0.58737[0.001,0.5]
Interaction: 19755/20016 Out of bounds for computation -> 1.84849[0.001,0.5]
19756
19757
Interaction: 19758/20016 Out of bounds for computation -> 2.75188[0.001,0.5]
19759
19760
Interaction: 19761/20016 Out of bounds for computation -> 1.44421[0.001,0.5]
Interaction: 19762/20016 Out of bounds for computation -> 0.63746[0.001,0.5]
19763
19764
Interaction: 19765/20016 Out of bounds for computation -> 1.37854[0.001,0.5]
Interaction: 19766/20016 Out of bounds for computation -> 0.61144[0.001,0.5]
19767
Interaction: 19768/20016 Out of bounds for computation -> 0.534279[0.001,0.5]
Interaction: 19769/20016 Out of bounds for computation -> 0.524709[0.001,0.5]
19770
Interaction: 19771/20016 Out of bounds for computation -> 2.36153[0.001,0.5]
Interaction: 19772/20016 Out of bounds for computation -> 1.4566[0.001,0.5]
Interaction: 19773/20016 Out of bounds for computation -> 0.840296[0.001,0.5]
19774
19775
Interaction: 19776/20016 Out of bounds for computation -> 0.698699[0.001,0.5]
Interaction: 19777/20016 Out of bounds for computation -> 1.49202[0.001,0.5]
Interaction: 19778/20016 Out of bounds for computation -> 1.48843[0.001,0.5]
Interaction: 19779/20016 Out of bounds for computation -> 0.862605[0.001,0.5]
19780
19781
19782
Interaction: 19783/20016 Out of bounds for computation -> 0.74481[0.001,0.5]
19784
Interaction: 19785/20016 Out of bounds for computation -> 2.32529[0.001,0.5]
19786
19787
19788
Interaction: 19789/20016 Out of bounds for computation -> 0.692407[0.001,0.5]
19790
Interaction: 19791/20016 Out of bounds for computation -> 1.40357[0.001,0.5]
19792
Interaction: 19793/20016 Out of bounds for computation -> 1.76617[0.001,0.5]
19794
Interaction: 19795/20016 Out of bounds for computation -> 2.00695[0.001,0.5]
Interaction: 19796/20016 Out of bounds for computation -> 1.5091[0.001,0.5]
Interaction: 19797/20016 Out of bounds for computation -> 1.16485[0.001,0.5]
19798
Interaction: 19799/20016 Out of bounds for computation -> 0.780479[0.001,0.5]
19800
Interaction: 19801/20016 Out of bounds for computation -> 1.5235[0.001,0.5]
19802
Interaction: 19803/20016 Out of bounds for computation -> 2.74944[0.001,0.5]
Interaction: 19804/20016 Out of bounds for computation -> 2.03514[0.001,0.5]
19805
19806
Interaction: 19807/20016 Out of bounds for computation -> 0.75349[0.001,0.5]
Interaction: 19808/20016 Out of bounds for computation -> 1.30252[0.001,0.5]
19809
Interaction: 19810/20016 Out of bounds for computation -> 1.91152[0.001,0.5]
19811
19812
Interaction: 19813/20016 Out of bounds for computation -> 0.55638[0.001,0.5]
19814
19815
Interaction: 19816/20016 Out of bounds for computation -> 0.918978[0.001,0.5]
19817
Interaction: 19818/20016 Out of bounds for computation -> 2.93611[0.001,0.5]
Interaction: 19819/20016 Out of bounds for computation -> 1.37075[0.001,0.5]
Interaction: 19820/20016 Out of bounds for computation -> 2.91707[0.001,0.5]
Interaction: 19821/20016 Out of bounds for computation -> 1.6167[0.001,0.5]
19822
Interaction: 19823/20016 Out of bounds for computation -> 2.85757[0.001,0.5]
Interaction: 19824/20016 Out of bounds for computation -> 0.664594[0.001,0.5]
Interaction: 19825/20016 Out of bounds for computation -> 1.64944[0.001,0.5]
Interaction: 19826/20016 Out of bounds for computation -> 1.66084[0.001,0.5]
Interaction: 19827/20016 Out of bounds for computation -> 1.49347[0.001,0.5]
19828
Interaction: 19829/20016 Out of bounds for computation -> 0.795448[0.001,0.5]
19830
19831
19832
19833
19834
19835
19836
Interaction: 19837/20016 Out of bounds for computation -> 1.4287[0.001,0.5]
19838
19839
19840
Interaction: 19841/20016 Out of bounds for computation -> 1.88513[0.001,0.5]
19842
19843
19844
Interaction: 19845/20016 Out of bounds for computation -> 0.796025[0.001,0.5]
19846
Interaction: 19847/20016 Out of bounds for computation -> 0.667653[0.001,0.5]
Interaction: 19848/20016 Out of bounds for computation -> 0.590898[0.001,0.5]
19849
19850
Interaction: 19851/20016 Out of bounds for computation -> 1.29385[0.001,0.5]
Interaction: 19852/20016 Out of bounds for computation -> nan[0.001,0.5]
Interaction: 19853/20016 Out of bounds for computation -> nan[0.001,0.5]
19854
19855
19856
Interaction: 19857/20016 Out of bounds for computation -> 0.658745[0.001,0.5]
Interaction: 19858/20016 Out of bounds for computation -> 1.8245[0.001,0.5]
19859
19860
Interaction: 19861/20016 Out of bounds for computation -> 1.42767[0.001,0.5]
19862
19863
19864
19865
Interaction: 19866/20016 Out of bounds for computation -> 0.633723[0.001,0.5]
Interaction: 19867/20016 Out of bounds for computation -> 0.661518[0.001,0.5]
Interaction: 19868/20016 Out of bounds for computation -> 0.576301[0.001,0.5]
19869
Interaction: 19870/20016 Out of bounds for computation -> 0.513156[0.001,0.5]
Interaction: 19871/20016 Out of bounds for computation -> 1.23019[0.001,0.5]
Interaction: 19872/20016 Out of bounds for computation -> 2.08318[0.001,0.5]
Interaction: 19873/20016 Out of bounds for computation -> 0.641362[0.001,0.5]
19874
19875
Interaction: 19876/20016 Out of bounds for computation -> 0.693081[0.001,0.5]
19877
19878
19879
19880
Interaction: 19881/20016 Out of bounds for computation -> 1.60522[0.001,0.5]
Interaction: 19882/20016 Out of bounds for computation -> 1.12796[0.001,0.5]
19883
19884
19885
19886
Interaction: 19887/20016 Out of bounds for computation -> 0.584674[0.001,0.5]
Interaction: 19888/20016 Out of bounds for computation -> 2.2098[0.001,0.5]
Interaction: 19889/20016 Out of bounds for computation -> 0.567154[0.001,0.5]
Interaction: 19890/20016 Out of bounds for computation -> 2.25961[0.001,0.5]
Interaction: 19891/20016 Out of bounds for computation -> 0.581498[0.001,0.5]
19892
Interaction: 19893/20016 Out of bounds for computation -> 1.7923[0.001,0.5]
Interaction: 19894/20016 Out of bounds for computation -> 1.69383[0.001,0.5]
Interaction: 19895/20016 Out of bounds for computation -> 0.829304[0.001,0.5]
19896
19897
19898
Interaction: 19899/20016 Out of bounds for computation -> 0.597096[0.001,0.5]
19900
19901
Interaction: 19902/20016 Out of bounds for computation -> 0.545667[0.001,0.5]
19903
19904
Interaction: 19905/20016 Out of bounds for computation -> 0.609724[0.001,0.5]
Interaction: 19906/20016 Out of bounds for computation -> 0.703586[0.001,0.5]
19907
Interaction: 19908/20016 Out of bounds for computation -> 0.773152[0.001,0.5]
19909
Interaction: 19910/20016 Out of bounds for computation -> 0.645227[0.001,0.5]
19911
19912
Interaction: 19913/20016 Out of bounds for computation -> 0.537804[0.001,0.5]
Interaction: 19914/20016 Out of bounds for computation -> 0.583796[0.001,0.5]
Interaction: 19915/20016 Out of bounds for computation -> 1.86511[0.001,0.5]
19916
19917
19918
19919
19920
Interaction: 19921/20016 Out of bounds for computation -> 2.07535[0.001,0.5]
19922
Interaction: 19923/20016 Out of bounds for computation -> 0.819109[0.001,0.5]
Interaction: 19924/20016 Out of bounds for computation -> 1.59926[0.001,0.5]
Interaction: 19925/20016 Out of bounds for computation -> 0.586663[0.001,0.5]
Interaction: 19926/20016 Out of bounds for computation -> 0.903674[0.001,0.5]
19927
Interaction: 19928/20016 Out of bounds for computation -> 0.823641[0.001,0.5]
Interaction: 19929/20016 Out of bounds for computation -> 0.738719[0.001,0.5]
Interaction: 19930/20016 Out of bounds for computation -> 0.908839[0.001,0.5]
19931
Interaction: 19932/20016 Out of bounds for computation -> 2.23754[0.001,0.5]
19933
19934
19935
Interaction: 19936/20016 Out of bounds for computation -> 0.679834[0.001,0.5]
Interaction: 19937/20016 Out of bounds for computation -> 0.508006[0.001,0.5]
Interaction: 19938/20016 Out of bounds for computation -> nan[0.001,0.5]
19939
Interaction: 19940/20016 Out of bounds for computation -> 0.523721[0.001,0.5]
Interaction: 19941/20016 Out of bounds for computation -> 2.63792[0.001,0.5]
Interaction: 19942/20016 Out of bounds for computation -> 0.72447[0.001,0.5]
Interaction: 19943/20016 Out of bounds for computation -> 0.77061[0.001,0.5]
Interaction: 19944/20016 Out of bounds for computation -> 0.681167[0.001,0.5]
Interaction: 19945/20016 Out of bounds for computation -> 0.820618[0.001,0.5]
Interaction: 19946/20016 Out of bounds for computation -> 0.534048[0.001,0.5]
Interaction: 19947/20016 Out of bounds for computation -> 2.16896[0.001,0.5]
19948
Interaction: 19949/20016 Out of bounds for computation -> 1.88845[0.001,0.5]
19950
Interaction: 19951/20016 Out of bounds for computation -> 0.82606[0.001,0.5]
Interaction: 19952/20016 Out of bounds for computation -> 0.599893[0.001,0.5]
19953
Interaction: 19954/20016 Out of bounds for computation -> 2.38313[0.001,0.5]
19955
Interaction: 19956/20016 Out of bounds for computation -> 0.817848[0.001,0.5]
19957
19958
19959
Interaction: 19960/20016 Out of bounds for computation -> 1.95835[0.001,0.5]
Interaction: 19961/20016 Out of bounds for computation -> 0.558629[0.001,0.5]
19962
19963
Interaction: 19964/20016 Out of bounds for computation -> nan[0.001,0.5]
19965
19966
19967
Interaction: 19968/20016 Out of bounds for computation -> 2.27913[0.001,0.5]
19969
Interaction: 19970/20016 Out of bounds for computation -> 1.5395[0.001,0.5]
19971
19972
Interaction: 19973/20016 Out of bounds for computation -> 0.540207[0.001,0.5]
Interaction: 19974/20016 Out of bounds for computation -> 0.938269[0.001,0.5]
19975
19976
19977
Interaction: 19978/20016 Out of bounds for computation -> 2.55218[0.001,0.5]
Interaction: 19979/20016 Out of bounds for computation -> 1.52886[0.001,0.5]
19980
19981
Interaction: 19982/20016 Out of bounds for computation -> 1.49939[0.001,0.5]
19983
19984
19985
Interaction: 19986/20016 Out of bounds for computation -> 0.710565[0.001,0.5]
Interaction: 19987/20016 Out of bounds for computation -> 2.21297[0.001,0.5]
Interaction: 19988/20016 Out of bounds for computation -> 0.926286[0.001,0.5]
19989
Interaction: 19990/20016 Out of bounds for computation -> 0.865211[0.001,0.5]
Interaction: 19991/20016 Out of bounds for computation -> 0.790147[0.001,0.5]
Interaction: 19992/20016 Out of bounds for computation -> 0.886855[0.001,0.5]
19993
Interaction: 19994/20016 Out of bounds for computation -> 0.50268[0.001,0.5]
19995
19996
19997
Interaction: 19998/20016 Out of bounds for computation -> 1.04131[0.001,0.5]
19999
Interaction: 20000/20016 Out of bounds for computation -> 1.43722[0.001,0.5]
20001
20002
20003
20004
20005
Interaction: 20006/20016 Out of bounds for computation -> 2.01592[0.001,0.5]
20007
20008
20009
20010
Interaction: 20011/20016 Out of bounds for computation -> 2.12246[0.001,0.5]
20012
Interaction: 20013/20016 Out of bounds for computation -> 2.40675[0.001,0.5]
Interaction: 20014/20016 Out of bounds for computation -> 2.39423[0.001,0.5]
Interaction: 20015/20016 Out of bounds for computation -> 0.595588[0.001,0.5]
Warning in <TROOT::Append>: Replacing existing TH1: Backprojection (Potential memory leak).
In [13]:
c=ROOT.TCanvas()
c.cd()
p.Draw()
c.Draw()
In [11]:
type(p)
Out[11]:
<class cppyy.gbl.TH2D at 0x558c9f20cca0>
In [ ]:
 
In [16]:
fig = compton.BackProjection(t.df(),t.distance())

canvas = ROOT.TCanvas()
canvas.cd()
fig.Draw()
canvas.Draw()
In [17]:
t1 = compton.ImagingData(catalog['test'], 100)
t1.df().describe()

fig1 = compton.BackProjection(t1.df(),t1.distance())

canvas = ROOT.TCanvas()
canvas.cd()
fig1.Draw()
canvas.Draw()
In [74]:
 
Object `Get_Theta_Compton` not found.
In [10]:
ROOT.gInterpreter.ProcessLine(".L compton.C")
Out[10]:
0
In file included from input_line_88:1:
/home/bgameiro/Repos/nucphys-thesis/code/analysis/Imaging/compton.C:14:10: fatal error: 'tqdm/tqdm.h' file not found
#include "tqdm/tqdm.h"
         ^~~~~~~~~~~~~
In [7]:
t.save()
In [ ]:
 
In [8]:
df = t.df().query(
    "\
    E_s >=   0 &\
    X_s >= -25 &\
    X_s <=  25 &\
    Y_s >= -25 &\
    Y_s <=  25 &\
    Z_s <=   0 &\
    Z_s >= -70 &\
    E_a >=   0 &\
    X_a >= -50 &\
    X_a <=  50 &\
    Y_a >= -50 &\
    Y_a <=  50 &\
    Z_a >=  40 &\
    Z_a <= 100 &\
    costheta <= 1 &\
    costheta >=-1 \
    "
)

df.describe()
Out[8]:
DetectorNumber E_s X_s Y_s Z_s E_a X_a Y_a Z_a dt ts E_t costheta lambda arm
count 6676.000000 6676.000000 6676.000000 6676.000000 6676.000000 6676.000000 6676.000000 6676.000000 6676.000000 6676.000000 3.319000e+03 6676.000000 6676.000000 6676.000000 6676.000000
mean 2.543140 3.532191 -1.246568 -1.349572 -49.211208 0.894787 4.114421 -4.564959 50.273454 2.546766 8.107718e+14 4.426978 -0.086791 1414.798804 159.116741
std 1.101893 1.069384 12.246276 13.712936 10.563486 1.061915 26.270925 26.872542 7.147105 3.361307 5.410474e+14 0.092784 0.646729 1025.591724 8.190745
min 1.000000 0.135598 -24.914600 -24.909458 -69.975600 0.241325 -49.997300 -49.996000 40.000500 -9.579000 7.076330e+11 4.269186 -0.999785 0.148435 127.812879
25% 1.000000 3.612425 -10.913550 -13.918192 -55.847875 0.288811 -14.446325 -27.417275 43.578849 0.329000 3.282865e+14 4.353669 -0.653545 524.628635 152.998959
50% 3.000000 4.020452 -0.200750 -1.695565 -50.835864 0.383962 6.699647 -5.138090 49.891955 2.927000 7.458730e+14 4.409238 -0.214834 1262.345974 158.914870
75% 3.000000 4.128424 9.077192 11.818974 -44.903450 0.826490 24.162750 15.330390 56.099450 4.893250 1.286725e+15 4.480551 0.497881 2160.708917 165.441519
max 4.000000 4.431936 24.559600 23.769362 -2.349210 4.476030 49.994611 49.974844 77.403335 9.921000 1.800290e+15 4.717866 0.996373 5146.929606 178.169082
In [9]:
df.dt.hist(bins=100)
Out[9]:
<Axes: >
In [10]:
df.ts.hist(bins=100)
Out[10]:
<Axes: >
In [11]:
df.costheta.hist(bins=100)
Out[11]:
<Axes: >
In [12]:
df["lambda"].hist(bins=100)
Out[12]:
<Axes: >
In [13]:
df["arm"].hist(bins=100)
Out[13]:
<Axes: >
In [14]:
df.query("RR==False")["E_t"].hist(bins=100)
Out[14]:
<Axes: >
In [15]:
df["E_t"].hist(bins=100)
Out[15]:
<Axes: >
In [16]:
df["X_a"].hist(bins=100)
Out[16]:
<Axes: >